From 2284141437b4588abb90d6182f08785256fc3620 Mon Sep 17 00:00:00 2001 From: mrwafflecats Date: Thu, 11 Jun 2026 20:13:30 -0500 Subject: [PATCH] removed commented binds and added steam and discrod to autostart --- hyprland.lua | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/hyprland.lua b/hyprland.lua index 6eff12e..9c9711b 100644 --- a/hyprland.lua +++ b/hyprland.lua @@ -40,11 +40,12 @@ local menu = "tofi-drun --drun-launch=true" hl.on("hyprland.start", function() -- exec-once & exec commands - hl.exec_cmd("eww daemon & eww open-many bar widget_window resource_monitor") hl.exec_cmd("systemctl --user start hyprpolkitagent") hl.exec_cmd("gsettings set org.gnome.desktop.interface gtk-theme 'YOUR_DARK_GTK3_THEME'") hl.exec_cmd("gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'") - + hl.exec_cmd("eww daemon & eww open-many bar widget_window resource_monitor") + hl.exec_cmd("steam & discord") + -- Wallpapers hl.exec_cmd("awww-daemon") hl.exec_cmd("awww img -o 'DP-3' /home/Downloads/Wallpapers/oceanside.png") @@ -193,17 +194,6 @@ hl.bind(mainMod .. " + mouse_up", hl.dsp.focus({ workspace = "e-1" })) hl.bind(mainMod .. " + mouse:272", hl.dsp.window.drag(), { mouse = true }) hl.bind(mainMod .. " + mouse:273", hl.dsp.window.resize(), { mouse = true }) --- Laptop multimedia keys (Commented out as per original config) --- hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+"), { locked = true, repeating = true }) --- hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"), { locked = true, repeating = true }) --- hl.bind("XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"), { locked = true, repeating = true }) --- hl.bind("XF86AudioMicMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"), { locked = true, repeating = true }) --- hl.bind("XF86MonBrightnessUp", hl.dsp.exec_cmd("brightnessctl -e4 -n2 set 5%+"), { locked = true, repeating = true }) --- hl.bind("XF86MonBrightnessDown",hl.dsp.exec_cmd("brightnessctl -e4 -n2 set 5%-"), { locked = true, repeating = true }) --- hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true }) --- hl.bind("XF86AudioPause", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true }) --- hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true }) --- hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true }) -------------------------------- ---- WINDOWS AND WORKSPACES ----