mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-08-10 18:11:13 +10:00
20 lines
319 B
Bash
Executable File
20 lines
319 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/reset.jpg
|
|
fi
|
|
|
|
leftwm-command "UnloadTheme"
|
|
|
|
|
|
ps -alh | grep xmobar_control_script | awk '{print $3}' | xargs kill
|
|
|
|
pkill compton
|
|
pkill picom
|
|
pkill xmobar
|
|
pkill xmobar
|
|
|