-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxtra
More file actions
executable file
·34 lines (32 loc) · 1003 Bytes
/
xtra
File metadata and controls
executable file
·34 lines (32 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
killall -q xclock
killall -q xeyes
killall -q oclock
case "$1" in
"ctwm")
# ctwm
xclock \
-digital \
-strftime " %I:%M%p" \
-face "Terminus:size=10" \
-geometry 120x30-0+0 &
xeyes \
-biblicallyAccurate \
-geometry 150-0-0 &
oclock \
-geometry -0-110 &
;;
*)
# fvwm
xclock \
-digital \
-strftime "%I:%M %p" \
-face "Terminus:size=10" \
-geometry 86x30-2+90 &
xeyes \
-biblicallyAccurate \
-geometry 150-0-0 &
oclock \
-geometry 90x90-8+140 &
;;
esac