diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | hypr/hyprland.conf | 12 | ||||
-rw-r--r-- | scroll/config | 4 |
3 files changed, 13 insertions, 4 deletions
@@ -33,6 +33,7 @@ install-scrollconf: scroll/config.d/user.conf scroll/config.d/user.conf: @echo "Generating user.conf..." + @mkdir -p scroll/config.d @echo 'set $$home' $(shell echo $(HOME)) > scroll/config.d/user.conf @echo "Done." diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index aa0d558..6dbbef6 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -216,6 +216,8 @@ windowrulev2 = move cursor,class:REAPER,floating:1 windowrulev2 = nofocus,class:REAPER,title:^(menu)$ windowrulev2 = nofocus,class:REAPER,title:^$ windowrulev2 = workspace special:easyeffects silent, class: ^(com\.github\.wwmm\.easyeffects)$ +# Fix brave xray menus +windowrulev2 = xray 0, class: ^(\s*), title: ^(\s*)$ #}}} #{{{ Mods @@ -248,11 +250,13 @@ $secdMod = ALT # hyprscrolling layout binds #bind = $mainMod+SHIFT, H, layoutmsg, move -1 #HYPRSCROLLING #bind = $mainMod+SHIFT, L, layoutmsg, move +1 #HYPRSCROLLING -bind = $mainMod+CTRL, H, layoutmsg, movewindowto l #HYPRSCROLLING -bind = $mainMod+CTRL, L, layoutmsg, movewindowto r #HYPRSCROLLING +bind = $mainMod+SHIFT, H, layoutmsg, movewindowto l #HYPRSCROLLING +bind = $mainMod+SHIFT, J, layoutmsg, movewindowto d #HYPRSCROLLING +bind = $mainMod+SHIFT, K, layoutmsg, movewindowto u #HYPRSCROLLING +bind = $mainMod+SHIFT, L, layoutmsg, movewindowto r #HYPRSCROLLING #bind = $mainMod+SHIFT, H, movewindow, l #HYPRSCROLLING -bind = $mainMod+SHIFT, L, movewindow, r #HYPRSCROLLING -bind = $mainMod+SHIFT, K, movewindow, u #HYPRSCROLLING +#bind = $mainMod+SHIFT, L, movewindow, r #HYPRSCROLLING +#bind = $mainMod+SHIFT, K, movewindow, u #HYPRSCROLLING #bind = $mainMod+SHIFT, J, movewindow, d #HYPRSCROLLING bind = $mainMod, H, layoutmsg, focus l #HYPRSCROLLING bind = $mainMod, J, layoutmsg, focus d #HYPRSCROLLING diff --git a/scroll/config b/scroll/config index 13add04..4fd9991 100644 --- a/scroll/config +++ b/scroll/config @@ -124,8 +124,12 @@ animations { bindsym $mod+e exec $rmenu bindsym $mod+d exec $dmenu + # Launch your file manager bindsym $mod+Alt+f exec $filemanager + # Lock your screen + bindsym $mod+q exec loginctl lock-session + # Drag floating windows by holding down $mod and left mouse button. # Resize them with right mouse button + $mod. # Despite the name, also works for non-floating windows. |