11 lines
286 B
Text
11 lines
286 B
Text
|
#!/bin/sh
|
||
|
|
||
|
FIFO="$XDG_RUNTIME_DIR/sandbar-0"
|
||
|
|
||
|
[ -e "$FIFO" ] && rm -f "$FIFO"
|
||
|
mkfifo "$FIFO"
|
||
|
|
||
|
while cat "$FIFO"; do :; done | sandbar -hide-vacant-tags -no-title -vertical-padding 3 -title-bg-color '222222ff' -font 'monospace:size=10' &
|
||
|
|
||
|
pidof -sx someblocks || someblocks -s "$FIFO" &
|