19 lines
355 B
Bash
Executable File
19 lines
355 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function run {
|
|
if ! pgrep -f $1 ;
|
|
then
|
|
$@&
|
|
fi
|
|
}
|
|
|
|
run ~/.config/picom/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 nm-applet
|
|
#run music_wake.sh
|