Minor improvments to init & ~/bin scripts, remove numlock from autostarts
This commit is contained in:
@ -3,14 +3,17 @@
|
||||
on=""
|
||||
off=""
|
||||
|
||||
if [[ $1 == *toggle* ]] && [[ $(pidof compton) ]]; then
|
||||
al-compositor --stop && exit 0
|
||||
elif [[ $1 == *toggle* ]]; then
|
||||
al-compositor --start && exit 0
|
||||
if [[ "$1" ]]; then
|
||||
if [[ "$1" == *toggle* ]] && [[ "$(pidof compton)" ]]; then
|
||||
al-compositor --stop
|
||||
elif [[ "$1" == *toggle* ]]; then
|
||||
al-compositor --start
|
||||
fi
|
||||
exit 0
|
||||
fi
|
||||
|
||||
while true; do
|
||||
if [[ $(pidof compton) ]]; then
|
||||
if [[ "$(pidof compton)" ]]; then
|
||||
echo "$on"
|
||||
else
|
||||
echo "%{F#888888}$off"
|
||||
|
Reference in New Issue
Block a user