wmii/rc/wmiirc

173 lines
3.3 KiB
Plaintext
Raw Normal View History

2006-02-25 21:36:53 +03:00
#!/bin/sh
# configure wmii
pidfile=/tmp/ns.$USER.$DISPLAY/wmiircpid
xwrite() {
file="$1"; shift
echo -n "$@" | wmiir write "$file"
}
proglist() {
for dir in `echo $@ | sed 's/^:/.:/; s/::/:.:/; s/:$/:./' | tr : ' '`
do
for i in $dir/*
do
test -x "$i" && test ! -d "$i" && echo `basename "$i"`
done
done | sort | uniq
}
2006-03-01 13:30:44 +03:00
test -f $pidfile && kill `cat $pidfile` 2>/dev/null
2006-02-25 21:36:53 +03:00
echo $$ >$pidfile
MODKEY=Alt
WMII_FONT='fixed' export WMII_FONT
2006-02-25 21:36:53 +03: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 21:36:53 +03:00
xwrite /def/selcolors $WMII_SELCOLORS
xwrite /def/normcolors $WMII_NORMCOLORS
2006-03-10 00:45:21 +03:00
xwrite /ws/tag 1
2006-02-25 21:36:53 +03:00
# TAGGING RULES
wmiir write /def/rules <<EOF
2006-03-10 19:22:01 +03:00
/XMMS:.*/ -> ~0
/Gimp.*:.*/ -> ~3
EOF
2006-02-25 21:36:53 +03:00
# BAR CONFIGURATION
2006-03-09 04:15:43 +03:00
wmiir create /bar/foo
xwrite /bar/foo/colors $WMII_SELCOLORS
xwrite /bar/expand foo
2006-02-25 21:36:53 +03: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-Control-t
$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 18:23:13 +03:00
$MODKEY-e
$MODKEY-0
2006-03-06 01:38:50 +03: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 21:36:53 +03:00
# EVENT LOOP
wmiir read /event 2>/dev/null |
while read event
do
set -- $event
type="$1"; shift
case "$type" in
2006-03-09 04:15:43 +03:00
NT)
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 04:15:43 +03:00
xwrite /bar/$1/data $1;;
RT)
wmiir remove /bar/$1;;
TF)
if test -n "$oldtag"
2006-03-09 04:15:43 +03:00
then
xwrite /bar/$oldtag/colors $WMII_SELCOLORS
2006-03-09 04:15:43 +03:00
fi
2006-03-09 04:43:20 +03:00
xwrite /bar/$1/data $1
xwrite /bar/$1/colors $WMII_NORMCOLORS
oldtag=$1;;
2006-03-09 04:15:43 +03:00
LB)
2006-03-09 18:23:18 +03:00
xwrite /ctl select $1;;
2006-02-25 21:36:53 +03:00
K)
case "$1" in
$MODKEY-Control-c)
xwrite /ws/sel/sel/ctl kill;;
2006-02-25 21:36:53 +03:00
$MODKEY-Control-w,y)
wmiirc &;;
$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 11:29:20 +03:00
extern xterm &;;
$MODKEY-m)
xwrite /ws/sel/mode max;;
$MODKEY-s)
xwrite /ws/sel/mode stack;;
2006-03-10 18:23:13 +03:00
$MODKEY-e)
xwrite /ws/sel/mode equal;;
2006-02-25 21:36:53 +03:00
$MODKEY-n)
xwrite /ws/sel/sel/ctl sendto new;;
2006-02-25 21:36:53 +03:00
$MODKEY-Return)
xwrite /ws/sel/sel/ctl sendto prev;;
2006-02-25 21:36:53 +03:00
$MODKEY-Shift-Return)
xwrite /ws/sel/sel/ctl sendto next;;
$MODKEY-space)
xwrite /ws/sel/sel/ctl sendto 0;;
$MODKEY-Shift-space)
2006-03-09 15:30:51 +03:00
xwrite /ws/sel/sel/ctl sendto 1;;
2006-02-25 21:36:53 +03:00
$MODKEY-h)
xwrite /ws/ctl select prev;;
2006-02-25 21:36:53 +03:00
$MODKEY-l)
xwrite /ws/ctl select next;;
2006-02-25 21:36:53 +03:00
$MODKEY-Tab)
xwrite /ws/sel/ctl select next;;
2006-02-25 21:36:53 +03:00
$MODKEY-j)
xwrite /ws/sel/ctl select next;;
2006-02-25 21:36:53 +03:00
$MODKEY-k)
xwrite /ws/sel/ctl select prev;;
2006-03-06 01:38:50 +03:00
$MODKEY-[0-9])
2006-02-25 21:36:53 +03:00
xwrite /ctl select `echo $1 | sed 's/.*-//'`;;
$MODKEY-Shift-[0-9])
xwrite /ws/sel/sel/tags `echo $1 | sed 's/.*-//'`;;
2006-02-25 21:36:53 +03:00
esac;;
esac
done &
echo $! >$pidfile