mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 19:32:24 +00:00
8 lines
215 B
Bash
8 lines
215 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ -n $(xdotool search --class bar_system_status_indicator) ]]; then
|
||
|
xdotool search --class bar_system_status_indicator windowkill &
|
||
|
else
|
||
|
termite --class bar_system_status_indicator -e "$1" &
|
||
|
fi
|