blob: a97eb348bea78023d051f4dffca5476963e7cf7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env sh
font="DejaVu Sans Mono:size=20"
nb='grey10'
nf='grey'
sb='grey'
sf='black'
screen=$(ratpoison -c sdump | tr ',' '\n' | grep '0$')
width=$(echo "$screen" | cut -d ' ' -f 5)
height=$(echo "$screen" | cut -d ' ' -f 6)
s=$(echo "$screen" | cut -d ' ' -f 2)
w=$((width/2))
x=$((width/4))
y=$((height/3))
dmenu -p "Select >" -l 16 -m "$s" -x "$x" -y "$y" -w "$w" -sb "$sb" -sf "$sf" -nb "$nb" -nf "$nf" -fn "$font" -i "$@"
|