wmii/rc/wmiirc

174 lines
3.3 KiB
Plaintext
Raw Normal View History

2006-02-25 19:36:53 +01:00
#!/bin/sh
# configure wmii
xwrite() {
file="$1"; shift
echo -n "$@" | wmiir write "$file"
}
proglist() {
2006-03-15 09:02:25 +01:00
find `echo "$@" | tr ':' '\n' | uniq` -perm -u+x -type f -print |
2006-03-14 12:08:06 +01:00
sed 's,^.*/,, ' | sort | uniq
2006-02-25 19:36:53 +01:00
}
# give wmiiwm a chance to start
while ! echo Start wmiirc | wmiir write /event > /dev/null 2>&1
do
sleep 1
done
MODKEY=Alt export MODKEY
WMII_FONT='fixed' export WMII_FONT
2006-02-25 19:36:53 +01:00
WMII_NORMCOLORS='#222222 #eeeeee #666666' export WMII_NORMCOLORS
WMII_SELCOLORS='#ffffff #285577 #4c7899' export WMII_SELCOLORS
# WM CONFIGURATION
xwrite /def/border 3
xwrite /def/snap 20
xwrite /def/font $WMII_FONT
2006-02-25 19:36:53 +01:00
xwrite /def/selcolors $WMII_SELCOLORS
xwrite /def/normcolors $WMII_NORMCOLORS
2006-03-09 22:45:21 +01:00
xwrite /ws/tag 1
2006-02-25 19:36:53 +01:00
# TAGGING RULES
wmiir write /def/rules <<EOF
/XMMS:.*/ -> ~
/Gimp.*:.*/ -> ~
EOF
2006-02-25 19:36:53 +01:00
# BAR CONFIGURATION
2006-03-10 23:42:43 +01:00
wmiir create /bar/spare
xwrite /bar/spare/colors $WMII_SELCOLORS
xwrite /bar/expand spare
2006-02-25 19:36:53 +01:00
# MISC
xsetroot -solid '#0b1014'
status &
proglist $OLD_PATH >/tmp/ns.$USER.$DISPLAY/progs &
# SHORTCUTS
wmiir write /def/keys <<EOF
$MODKEY-Control-c
$MODKEY-Control-w,y
$MODKEY-Control-q,y
$MODKEY-Control-p
$MODKEY-Control-a
$MODKEY-t
$MODKEY-Return
$MODKEY-Shift-Return
$MODKEY-space
$MODKEY-Shift-space
$MODKEY-h
$MODKEY-l
$MODKEY-j
$MODKEY-k
$MODKEY-Tab
$MODKEY-n
$MODKEY-m
$MODKEY-s
2006-03-10 16:23:13 +01:00
$MODKEY-e
$MODKEY-0
2006-03-05 23:38:50 +01:00
$MODKEY-1
$MODKEY-2
$MODKEY-3
$MODKEY-4
$MODKEY-5
$MODKEY-6
$MODKEY-7
$MODKEY-8
$MODKEY-9
$MODKEY-Shift-0
$MODKEY-Shift-1
$MODKEY-Shift-2
$MODKEY-Shift-3
$MODKEY-Shift-4
$MODKEY-Shift-5
$MODKEY-Shift-6
$MODKEY-Shift-7
$MODKEY-Shift-8
$MODKEY-Shift-9
EOF
2006-02-25 19:36:53 +01:00
# EVENT LOOP
wmiir read /event 2>/dev/null |
while read event
do
set -- $event
type="$1"; shift
case "$type" in
Start)
if test $1 = "wmiirc"
then
exit 0
fi
;;
NewTag)
2006-03-09 02:15:43 +01:00
wmiir create /bar/$1
if test $1 = "$oldtag"
then
xwrite /bar/$1/colors $WMII_NORMCOLORS
else
xwrite /bar/$1/colors $WMII_SELCOLORS
fi
2006-03-09 02:15:43 +01:00
xwrite /bar/$1/data $1;;
RemoveTag)
2006-03-09 02:15:43 +01:00
wmiir remove /bar/$1;;
FocusTag)
if test -n "$oldtag"
2006-03-09 02:15:43 +01:00
then
xwrite /bar/$oldtag/colors $WMII_SELCOLORS
2006-03-09 02:15:43 +01:00
fi
xwrite /bar/$1/data "$1"
2006-03-09 02:43:20 +01:00
xwrite /bar/$1/colors $WMII_NORMCOLORS
oldtag=$1;;
LabelClick)
2006-03-09 16:23:18 +01:00
xwrite /ctl select $1;;
Key)
2006-02-25 19:36:53 +01:00
case "$1" in
$MODKEY-Control-c)
xwrite /ws/sel/sel/ctl kill;;
2006-02-25 19:36:53 +01:00
$MODKEY-Control-w,y)
wmiirc &
exit 0;;
2006-02-25 19:36:53 +01:00
$MODKEY-Control-q,y)
xwrite /ctl quit;;
$MODKEY-Control-p)
extern `wmiimenu </tmp/ns.$USER.$DISPLAY/progs` &;;
$MODKEY-Control-a)
`proglist CONFPREFIX/wmii-3:$HOME/.wmii-3 | wmiimenu` &;;
$MODKEY-t)
2006-03-04 09:29:20 +01:00
extern xterm &;;
$MODKEY-m)
xwrite /ws/sel/mode max;;
$MODKEY-s)
xwrite /ws/sel/mode stack;;
2006-03-10 16:23:13 +01:00
$MODKEY-e)
xwrite /ws/sel/mode equal;;
2006-02-25 19:36:53 +01:00
$MODKEY-n)
xwrite /ws/sel/sel/ctl sendto new;;
2006-02-25 19:36:53 +01:00
$MODKEY-Return)
xwrite /ws/sel/sel/ctl sendto prev;;
2006-02-25 19:36:53 +01:00
$MODKEY-Shift-Return)
xwrite /ws/sel/sel/ctl sendto next;;
$MODKEY-space)
xwrite /ws/ctl select toggle;;
$MODKEY-Shift-space)
xwrite /ws/sel/sel/ctl sendto toggle;;
2006-02-25 19:36:53 +01:00
$MODKEY-h)
xwrite /ws/ctl select prev;;
2006-02-25 19:36:53 +01:00
$MODKEY-l)
xwrite /ws/ctl select next;;
2006-02-25 19:36:53 +01:00
$MODKEY-Tab)
xwrite /ws/sel/ctl select next;;
2006-02-25 19:36:53 +01:00
$MODKEY-j)
xwrite /ws/sel/ctl select next;;
2006-02-25 19:36:53 +01:00
$MODKEY-k)
xwrite /ws/sel/ctl select prev;;
2006-03-05 23:38:50 +01:00
$MODKEY-[0-9])
2006-02-25 19:36:53 +01:00
xwrite /ctl select `echo $1 | sed 's/.*-//'`;;
$MODKEY-Shift-[0-9])
xwrite /ws/sel/sel/tags `echo $1 | sed 's/.*-//'`;;
2006-02-25 19:36:53 +01:00
esac;;
esac
done &