summaryrefslogtreecommitdiff
path: root/ratdm
blob: a3183554078fa34c7b11a8a0188ec6c053b907dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env sh

font="DejaVu Sans Mono:size=13" 
#"-*-fixed-medium-*-*-*-12-*-*-*-*-*-*-*"
screen=$(ratpoison -c sdump | tr ',' '\n' | grep '1$')
width=$(echo $screen | cut -d ' ' -f 4)
height=$(echo $screen | cut -d ' ' -f 5)
s=$(echo $screen | cut -d ' ' -f 1)
w=$width #$(($width/2))
x=0 #$(($width/4))
y=$(($height/3))

dmenu -p "Select >" -l 16 -s $s -x $x -y $y -w $w -sb '#AAA' -sf black -nb '#000' -fn "$font" -i -p foo "$@"