summaryrefslogtreecommitdiff
path: root/scriptlets/glava_toggler.sh
blob: 28ae2261fbc1b9d1fda3f2f1f579c19bec4d1538 (plain)
1
2
3
4
5
6
#/bin/bash

command="glava --desktop"
[[ -n $( pgrep -f "$command" ) ]] && pkill -f "$command" || nohup $command > /dev/null 2>&1 &