Compare commits

...

3 commits

Author SHA1 Message Date
1624cf7a21
Optimize awesome autostarts 2024-02-14 20:16:30 +01:00
285995dbe3
Add zathura settings 2024-02-14 20:16:17 +01:00
8d0af4d0c2
Remove heliox-cli alias
executable name was changed to hx
2024-02-14 20:15:42 +01:00
3 changed files with 35 additions and 27 deletions

View file

@ -58,7 +58,6 @@ in {
lzg = mkIf hasLazygit "lazygit";
lzd = mkIf hasLazydocker "lazydocker";
batt = ''upower -i /org/freedesktop/UPower/devices/battery_BAT0 | grep -e "percentage" -e "state"'';
hx = "heliox-cli --mode";
slp = "systemctl suspend";
sdn = "shutdown 0";
nrs = "nh os switch ~/.setup";

View file

@ -2,6 +2,9 @@
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
statusbar-home-tilde = true;
default-fg = "#CDD6F4";
default-bg = "#1E1E2E";

View file

@ -1,32 +1,38 @@
local autostart = {}
function autostart.exec(awful)
awful.spawn.with_shell("picom --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("xmousepasteblock")
awful.spawn.with_shell("xinput map-to-output 20 DVI-I")
awful.spawn.with_shell("xrandr --output DP-0 --mode 1920x1080 --rate 74.97 --pos 0x0 --rotate normal --output DP-4 --primary --mode 2560x1440 --rate 143.86 --pos 1920x0 --rotate normal")
awful.spawn.with_shell('dbus-daemon --session --address="unix:path=$XDG_RUNTIME_DIR/bus"')
awful.spawn.with_shell("fcitx5 -d")
awful.spawn.with_shell("picom --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("webcord --start-minimized --force-audio-share-support")
-- 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("xmousepasteblock")
awful.spawn.with_shell("xinput map-to-output 20 DVI-I")
awful.spawn.with_shell(
"xrandr --output DP-0 --mode 1920x1080 --rate 74.97 --pos 0x0 --rotate normal --output DP-4 --primary --mode 2560x1440 --rate 143.86 --pos 1920x0 --rotate normal"
)
awful.spawn.with_shell('dbus-daemon --session --address="unix:path=$XDG_RUNTIME_DIR/bus"')
awful.spawn.with_shell("fcitx5 -d")
awful.spawn.with_shell("systemctl --user restart nextcloud-client.service")
awful.spawn.with_shell("systemctl --user start xremap")
awful.spawn.with_shell("signal-desktop --start-in-tray")
end
return autostart