9 lines
116 B
Bash
Executable File
9 lines
116 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
|
|
if [ "$(pidof compton)" ]; then
|
|
al-compositor --restart
|
|
else
|
|
al-compositor --start
|
|
fi
|