From 4f54cf1820da024a9cfce3474174e97781178536 Mon Sep 17 00:00:00 2001 From: zervo Date: Tue, 11 Mar 2025 19:19:45 +0100 Subject: [PATCH] Add other stuff --- private_dot_config/hypr/hyprland.conf | 3 +++ private_dot_config/hypr/keybinds.conf | 10 +++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/private_dot_config/hypr/hyprland.conf b/private_dot_config/hypr/hyprland.conf index 957cc55..50943f9 100644 --- a/private_dot_config/hypr/hyprland.conf +++ b/private_dot_config/hypr/hyprland.conf @@ -27,6 +27,7 @@ # - brightnessctl - brightness control # - wpctl - audio control # - hyprpolkitagent - policykit agent auth agent +# - wl-clipboard - clipboard integration ## PROGRAMS ## @@ -34,7 +35,9 @@ $browser = firefox --new-window $terminal = alacritty $fileManager = nemo +$lock = hyprlock $menu = ~/.config/rofi/launchers/type-2/launcher.sh +$screenshot = hyprshot --mode region ## MONITORS ## source = ~/.config/hypr/monitors.conf diff --git a/private_dot_config/hypr/keybinds.conf b/private_dot_config/hypr/keybinds.conf index a0afb91..187a792 100644 --- a/private_dot_config/hypr/keybinds.conf +++ b/private_dot_config/hypr/keybinds.conf @@ -10,6 +10,7 @@ $mainMod = SUPER # Sets "Windows" key as main modifier # WM BINDS: # Keybinds related to Hyprland itself. bind = $mainMod CTRL, E, exit, # Exit session. +bind = $mainMod, L, exec, $lock # Lock session. # APPLICATION BINDS: @@ -19,6 +20,7 @@ bind = $mainMod, Return, exec, $terminal # New terminal. bind = $mainMod, B, exec, $browser # New browser. bind = $mainMod, E, exec, [float] $fileManager # File explorer. bind = $mainMod, W, exec, $menu # App launcher. +bind = , Print, exec, $screenshot # Screenshot utility. # WINDOW BINDS: @@ -35,6 +37,7 @@ bind = $mainMod SHIFT, up, movewindow, u # Move active window up. bind = $mainMod SHIFT, down, movewindow, d # Move active window down. bindm = $mainMod, mouse:272, movewindow # Move window on mainMod+leftclick-drag. bindm = $mainMod, mouse:273, resizewindow # Resize window on mainMod+rightclick-drag. +bindm = $mainMod SHIFT, mouse:272, resizewindow # Resize window on mainMod+leftclick-shift-drag. # WINDOW-GROUP BINDS: @@ -103,6 +106,8 @@ bind = $mainMod, mouse_up, workspace, e-1 bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+ # Increase audio volume by 5%. bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- # Decrease audio volume by 5% +bindel = CTRL ,XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SOURCE@ 5%+ # Increase mic volume by 5%. +bindel = CTRL ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SOURCE@ 5%- # Decrease mic volume by 5% bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle # (un)Mute default audio sink. bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle # (un)Mute default audio source. bindel = ,XF86MonBrightnessUp, exec, brightnessctl s 10%+ # Increase screen brightness by 10%. @@ -110,4 +115,7 @@ bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%- bindl = , XF86AudioNext, exec, playerctl next # Skip to next media in queue. bindl = , XF86AudioPause, exec, playerctl play-pause # (un)Pause current media. bindl = , XF86AudioPlay, exec, playerctl play-pause # (un)Pause current media. -bindl = , XF86AudioPrev, exec, playerctl previous # Play previous media. \ No newline at end of file +bindl = , XF86AudioPrev, exec, playerctl previous # Play previous media. +bind = $mainMod, Z, exec, playerctl previous # Play previous media. (alternative) +bind = $mainMod, X, exec, playerctl play-pause # (un)Pause current media. (alternative) +bind = $mainMod, C, exec, playerctl next # Skip to next media in queue. (alternative) \ No newline at end of file