Overhaul luna complete
This commit is contained in:
parent
06f5971965
commit
6f9fdca876
110 changed files with 2408 additions and 2129 deletions
26
modules/wm/qtile/config/scripts/autostart.sh
Executable file
26
modules/wm/qtile/config/scripts/autostart.sh
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/env bash
|
||||
# ---
|
||||
# Use "run program" to run it only if it is not already running
|
||||
# Use "program &" to run it regardless
|
||||
# ---
|
||||
# NOTE: This script runs with every restart of AwesomeWM
|
||||
# TODO: run_once
|
||||
|
||||
|
||||
function run {
|
||||
if ! pgrep $1 > /dev/null ;
|
||||
then
|
||||
$@&
|
||||
fi
|
||||
}
|
||||
|
||||
run picom -CGb &
|
||||
run nitrogen --restore &
|
||||
run /usr/lib/polkit-kde-authentication-agent-1 &
|
||||
run megasync
|
||||
run xfce4-clipman
|
||||
run xfce4-power-manager
|
||||
run gammy
|
||||
run dunst
|
||||
run nm-applet
|
||||
run blueman-applet
|
||||
4
modules/wm/qtile/config/scripts/play-pause.sh
Executable file
4
modules/wm/qtile/config/scripts/play-pause.sh
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
playerctl play-pause
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue