mirror of
https://github.com/GHOSCHT/dotfiles.git
synced 2024-11-10 03:51:57 +01:00
32 lines
1.5 KiB
Lua
32 lines
1.5 KiB
Lua
|
local autostart = {}
|
||
|
|
||
|
function autostart.exec(awful)
|
||
|
awful.spawn.with_shell("picom --experimental-backends --backend glx --xrender-sync-fence")
|
||
|
-- awful.spawn.with_shell("nitrogen --restore")
|
||
|
awful.spawn.with_shell("redshift -x &&redshift -O 3500")
|
||
|
awful.spawn.with_shell("/usr/lib/polkit-kde-authentication-agent-1")
|
||
|
awful.spawn.with_shell("flatpak run io.github.spacingbat3.webcord --start-minimized")
|
||
|
awful.spawn.with_shell("playerctld daemon")
|
||
|
awful.spawn.with_shell("xbindkeys")
|
||
|
-- awful.spawn.with_shell("easyeffects --gapplication-service")
|
||
|
awful.spawn.with_shell("$HOME/.config/nanoKontroller/initSink.sh")
|
||
|
awful.spawn.with_shell("$HOME/.config/nanoKontroller/audio1.sh")
|
||
|
awful.spawn.with_shell(
|
||
|
"python3 $HOME/.local/bin/nanoKontroller --config $HOME/.config/nanoKontroller/nanoKontroller.ini")
|
||
|
-- awful.spawn.with_shell("flatpak run com.spotify.Client")
|
||
|
-- awful.spawn.with_shell("/usr/bin/emacs --daemon")
|
||
|
awful.spawn.with_shell("razer-cli --dpi 400")
|
||
|
awful.spawn.with_shell("electron-mail")
|
||
|
awful.spawn.with_shell("clipmenud")
|
||
|
awful.spawn.with_shell("nextcloud --background")
|
||
|
awful.spawn.with_shell("openrgb --server --profile default")
|
||
|
-- awful.spawn.with_shell("autocutsel -fork -selection CLIPBOARD")
|
||
|
-- awful.spawn.with_shell("autocutsel -fork -selection PRIMARY")
|
||
|
awful.spawn.with_shell("clipmenud")
|
||
|
awful.spawn.with_shell("xmousepasteblock")
|
||
|
awful.spawn.with_shell("xinput map-to-output 20 DVI-I")
|
||
|
awful.spawn.with_shell("fcitx5 -d")
|
||
|
end
|
||
|
|
||
|
return autostart
|