Compare commits

..

No commits in common. "1624cf7a216861daf1a37b12540ef1695d1b5650" and "0398828021849b626d5ca4ef12e17ab8482e4bfe" have entirely different histories.

3 changed files with 27 additions and 35 deletions

View file

@ -58,6 +58,7 @@ 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,9 +2,6 @@
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
statusbar-home-tilde = true;
default-fg = "#CDD6F4";
default-bg = "#1E1E2E";

View file

@ -1,38 +1,32 @@
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("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")
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")
end
return autostart