18 lines
341 B
Bash
Executable File
18 lines
341 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function run {
|
|
if ! pgrep -f $1 ;
|
|
then
|
|
$@&
|
|
fi
|
|
}
|
|
|
|
. ~/.config/compton/launch.sh
|
|
#run ~/.config/awesome/autohidewibox.py ~/.config/awesome/autohidewibox.conf
|
|
run ~/setbg.sh
|
|
run dunst
|
|
run pulseeffects --gapplication-service
|
|
xsetwacom set "Wacom HID 50DB Finger touch" Gesture off
|
|
run touchegg
|
|
#run music_wake.sh
|