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
|
2006-02-27 17:15:11 +03:00
|
|
|
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
|
2006-02-27 17:15:11 +03:00
|
|
|
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
|
|
|
|
2006-03-10 19:17:59 +03:00
|
|
|
# TAGGING RULES
|
|
|
|
wmiir write /def/rules <<EOF
|
2006-03-10 19:22:01 +03:00
|
|
|
/XMMS:.*/ -> ~0
|
2006-03-10 19:17:59 +03:00
|
|
|
/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
|
2006-03-10 18:54:07 +03:00
|
|
|
wmiir write /def/keys <<EOF
|
2006-02-26 02:44:27 +03:00
|
|
|
$MODKEY-Control-c
|
|
|
|
$MODKEY-Control-w,y
|
|
|
|
$MODKEY-Control-q,y
|
|
|
|
$MODKEY-Control-p
|
|
|
|
$MODKEY-Control-a
|
2006-03-08 14:36:36 +03:00
|
|
|
$MODKEY-Control-t
|
2006-02-26 02:44:27 +03:00
|
|
|
$MODKEY-t
|
|
|
|
$MODKEY-Return
|
2006-03-05 22:00:18 +03:00
|
|
|
$MODKEY-Shift-Return
|
2006-03-09 15:27:44 +03:00
|
|
|
$MODKEY-space
|
|
|
|
$MODKEY-Shift-space
|
2006-02-26 02:44:27 +03:00
|
|
|
$MODKEY-h
|
|
|
|
$MODKEY-l
|
|
|
|
$MODKEY-j
|
|
|
|
$MODKEY-k
|
|
|
|
$MODKEY-Tab
|
2006-03-05 22:00:18 +03:00
|
|
|
$MODKEY-n
|
|
|
|
$MODKEY-m
|
|
|
|
$MODKEY-s
|
2006-03-10 18:23:13 +03:00
|
|
|
$MODKEY-e
|
2006-03-09 14:00:47 +03:00
|
|
|
$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
|
2006-03-09 14:00:47 +03:00
|
|
|
$MODKEY-Shift-0
|
2006-02-26 02:44:27 +03:00
|
|
|
$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
|
2006-03-09 14:00:47 +03:00
|
|
|
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;;
|
2006-03-09 02:30:35 +03:00
|
|
|
TF)
|
2006-03-09 14:00:47 +03:00
|
|
|
if test -n "$oldtag"
|
2006-03-09 04:15:43 +03:00
|
|
|
then
|
2006-03-09 14:00:47 +03:00
|
|
|
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
|
2006-03-09 14:00:47 +03:00
|
|
|
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)
|
2006-03-05 22:00:18 +03:00
|
|
|
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 &;;
|
2006-03-05 22:00:18 +03:00
|
|
|
$MODKEY-m)
|
|
|
|
xwrite /ws/sel/mode max;;
|
|
|
|
$MODKEY-s)
|
|
|
|
xwrite /ws/sel/mode stack;;
|
2006-03-10 18:23:13 +03:00
|
|
|
$MODKEY-e)
|
2006-03-05 22:00:18 +03:00
|
|
|
xwrite /ws/sel/mode equal;;
|
2006-02-25 21:36:53 +03:00
|
|
|
$MODKEY-n)
|
2006-03-08 18:05:09 +03:00
|
|
|
xwrite /ws/sel/sel/ctl sendto new;;
|
2006-02-25 21:36:53 +03:00
|
|
|
$MODKEY-Return)
|
2006-03-08 18:05:09 +03:00
|
|
|
xwrite /ws/sel/sel/ctl sendto prev;;
|
2006-02-25 21:36:53 +03:00
|
|
|
$MODKEY-Shift-Return)
|
2006-03-08 18:05:09 +03:00
|
|
|
xwrite /ws/sel/sel/ctl sendto next;;
|
2006-03-09 15:27:44 +03:00
|
|
|
$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)
|
2006-03-05 22:00:18 +03:00
|
|
|
xwrite /ws/ctl select prev;;
|
2006-02-25 21:36:53 +03:00
|
|
|
$MODKEY-l)
|
2006-03-05 22:00:18 +03:00
|
|
|
xwrite /ws/ctl select next;;
|
2006-02-25 21:36:53 +03:00
|
|
|
$MODKEY-Tab)
|
2006-03-05 22:00:18 +03:00
|
|
|
xwrite /ws/sel/ctl select next;;
|
2006-02-25 21:36:53 +03:00
|
|
|
$MODKEY-j)
|
2006-03-05 22:00:18 +03:00
|
|
|
xwrite /ws/sel/ctl select next;;
|
2006-02-25 21:36:53 +03:00
|
|
|
$MODKEY-k)
|
2006-03-05 22:00:18 +03:00
|
|
|
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/.*-//'`;;
|
2006-03-08 14:12:04 +03:00
|
|
|
$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
|