Add other stuff
This commit is contained in:
parent
14340ffec3
commit
4f54cf1820
2 changed files with 12 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
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)
|
Loading…
Add table
Reference in a new issue