diff options
| author | Andrew Guschin <guschin@altlinux.org> | 2024-08-02 13:04:53 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin@altlinux.org> | 2024-08-02 13:04:53 +0400 |
| commit | ecbfbc1eda6bbb1a2f35890de01e6a34d78c640e (patch) | |
| tree | 7e49c5241b68e57ae73cd9f8630d00d136452e90 /.config/hypr | |
| parent | 88a8e97feabcd29606cceb7a85ddd9db45104dcb (diff) | |
add config for new monitor and couple of binds work moving through workspaces
Diffstat (limited to '.config/hypr')
| -rw-r--r-- | .config/hypr/hyprland.conf | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index bfd8a5e..0ec562d 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -1,5 +1,6 @@ monitor=eDP-1,preferred,auto,1.25 monitor=HDMI-A-1,preferred,auto-left,1.25 +monitor=DP-1,preferred,auto-left,1.25 # Execute your favorite apps at launch # exec-once = waybar & hyprpaper & firefox @@ -104,6 +105,9 @@ bind = $mainMod, p, exec, $menu # Move focus with mainMod + arrow keys bind = $mainMod, comma, movefocus, l bind = $mainMod, period, movefocus, r +bind = $mainMod SHIFT, comma, movewindow, l +bind = $mainMod SHIFT, period, movewindow, r + bind = $mainMod, left, movefocus, l bind = $mainMod, right, movefocus, r bind = $mainMod, up, movefocus, u @@ -141,13 +145,12 @@ bind = $mainMod SHIFT, 0, movetoworkspacesilent, 10 # Example special workspace (scratchpad) bind = $mainMod, T, togglespecialworkspace, telegram bind = $mainMod, S, togglespecialworkspace, signal -# binds = $mainMod, T, togglespecialworkspace, telegram -# binds = $mainMod, S, togglespecialworkspace, signal -# bind = $mainMod SHIFT, S, movetoworkspace, special:magic # Scroll through existing workspaces with mainMod + scroll bind = $mainMod, mouse_down, workspace, e+1 bind = $mainMod, mouse_up, workspace, e-1 +bind = $mainMod, Next, workspace, e+1 +bind = $mainMod, Prior, workspace, e-1 # Move/resize windows with mainMod + LMB/RMB and dragging bindm = $mainMod, mouse:272, movewindow |