diff options
author | Don Stewart <dons@cse.unsw.edu.au> | 2007-09-05 01:24:47 +0200 |
---|---|---|
committer | Don Stewart <dons@cse.unsw.edu.au> | 2007-09-05 01:24:47 +0200 |
commit | bea7c7116f233a785e4c96a1d577ca2797fe70bf (patch) | |
tree | 46ab81b8ac858b874048d6ad8fb27abc4bde7431 | |
parent | 3faa3c586a5cc74b4c20fb8ddda89b1dd3aec68c (diff) | |
download | XMonadContrib-bea7c7116f233a785e4c96a1d577ca2797fe70bf.tar.gz XMonadContrib-bea7c7116f233a785e4c96a1d577ca2797fe70bf.tar.xz XMonadContrib-bea7c7116f233a785e4c96a1d577ca2797fe70bf.zip |
docs not generated in DragPane.hs
darcs-hash:20070904232447-9c5c1-f43346ac050b541a16827c18e31c63b1374e85c9.gz
-rw-r--r-- | DragPane.hs | 2 | ||||
-rw-r--r-- | scripts/xmonad-clock.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/DragPane.hs b/DragPane.hs index 9b6b1a2..8207be8 100644 --- a/DragPane.hs +++ b/DragPane.hs @@ -8,7 +8,7 @@ -- Maintainer : David Roundy <droundy@darcs.net> -- Stability : unstable -- Portability : unportable - +-- -- Layouts that splits the screen either horizontally or vertically and -- shows two windows. The first window is always the master window, and -- the other is either the currently focused window or the second window in diff --git a/scripts/xmonad-clock.c b/scripts/xmonad-clock.c index 9ab6a94..c0530ed 100644 --- a/scripts/xmonad-clock.c +++ b/scripts/xmonad-clock.c @@ -30,7 +30,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* configuration */ #define REFRESH_RATE 60 #define TIME_FORMAT "%H.%M %a %b %d" -#define TIME_FORMAT2 "PDT %H.%M" +#define TIME_FORMAT2 "SYD %H.%M" int main(void) { char b[34]; @@ -52,7 +52,7 @@ int main(void) { realtime = localtime(&epochtime); strftime(b, sizeof(b), TIME_FORMAT, realtime); - setenv("TZ","America/Los_Angeles", 1); + setenv("TZ","Australia/Sydney", 1); pdttime = time(NULL); pdtrealtime = localtime(&pdttime); strftime(c, sizeof(c), TIME_FORMAT2, pdtrealtime); |