15 lines
235 B
Bash
Executable file
15 lines
235 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
|
|
#set background
|
|
if [ -x "$(command -v feh)" ]; then
|
|
feh --bg-scale $SCRIPTPATH/down.jpg
|
|
fi
|
|
|
|
leftwm-command "UnloadTheme"
|
|
|
|
pkill compton
|
|
pkill picom
|
|
pkill polybar
|
|
|