10 lines
160 B
Plaintext
10 lines
160 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ `pidof compton` ]; then
|
||
|
echo "Stopping compton"
|
||
|
killall compton
|
||
|
else
|
||
|
echo "Starting compton"
|
||
|
compton &
|
||
|
fi
|
||
|
exit
|