10 lines
286 B
Bash
Executable file
10 lines
286 B
Bash
Executable file
#!/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" &
|