blob: 61e631020026bc7e89bace073da55d0a8a42ec3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
hc() { "${herbstclient_command[@]:-herbstclient}" "$@" ;}
source ~/.config/herbstluftwm/config_vars
run=""
while [ -z "$run" ]; do
sleep .5
run=$(ps -e | grep bar)
echo "$run"
done
trayer --edge top --align right --heighttype pixel --height $bheight --widthtype pixel --width $bheight --distancefrom right --distance 4
|