diff options
| -rw-r--r-- | hypr/hyprland.conf | 30 | ||||
| -rw-r--r-- | waybar/config | 8 | 
2 files changed, 18 insertions, 20 deletions
| diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 2e67301..79ea043 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -23,7 +23,7 @@ exec-once = import-gsettings icon-theme 'COSMIC'  exec-once = import-gsettings cursor-theme 'BreezeX-Black'  exec-once = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'  exec-once = xrdb -load "$XDG_CONFIG_HOME"/X11/xresources -exec-once = com.github.wwmm.easyeffects +exec-once = easyeffects  exec-once = systemctl --user start dunst  exec-once = systemctl --user start hypridle  #exec-once = mpd @@ -141,7 +141,7 @@ decoration {  #{{{ Animations options  animations { -    enabled = no +    enabled = yes      # Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more      bezier = myBezier, 0.05, 0.9, 0.1, 1.05      animation = windows, 1, 7, myBezier @@ -177,16 +177,6 @@ master {  }  #}}} -#{{{ Hyprscrolling layout options -plugin:hyprscrolling { -  fullscreen_on_one_column = true -  column_width = 0.5 -  explicit_column_widths = 0.333, 0.5, 0.667, 1.0 -  focus_fit_method = 1 -  follow_focus = true -} -#}}} -  #{{{ Gestures options  gestures {      # See https://wiki.hyprland.org/Configuring/Variables/ for more @@ -200,6 +190,14 @@ plugin {      num_workspaces = 9      persistent_workspaces = true    } + +  hyprscrolling { +    fullscreen_on_one_column = true +    column_width = 0.5 +    explicit_column_widths = 0.333, 0.5, 0.667, 1.0 +    focus_fit_method = 1 +    follow_focus = true +  }  }  #}}} @@ -249,12 +247,12 @@ $secdMod = ALT  # hyprscrolling layout binds  #bind = $mainMod+SHIFT, H, layoutmsg, move -1 #HYPRSCROLLING  #bind = $mainMod+SHIFT, L, layoutmsg, move +1 #HYPRSCROLLING -bind = $mainMod+ALT, H, layoutmsg, movewindowto l #HYPRSCROLLING -bind = $mainMod+ALT, L, layoutmsg, movewindowto r #HYPRSCROLLING -bind = $mainMod+SHIFT, H, movewindow, l #HYPRSCROLLING +bind = $mainMod+CTRL, H, layoutmsg, movewindowto l #HYPRSCROLLING +bind = $mainMod+CTRL, 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, J, movewindow, d #HYPRSCROLLING +#bind = $mainMod+SHIFT, J, movewindow, d #HYPRSCROLLING  bind = $mainMod, H, layoutmsg, focus l #HYPRSCROLLING  bind = $mainMod, J, layoutmsg, focus d #HYPRSCROLLING  bind = $mainMod, K, layoutmsg, focus u #HYPRSCROLLING diff --git a/waybar/config b/waybar/config index 9cfffa6..0a409a6 100644 --- a/waybar/config +++ b/waybar/config @@ -61,8 +61,8 @@          "DP-2": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ],          //"DP-2": [ 10, 11, 12, 13, 14, 15, 16, 17, 18 ],        }, -      "on-scroll-up": "hyprctl dispatch split-workspace e+1", -      "on-scroll-down": "hyprctl dispatch split-workspace e-1", +      "on-scroll-up": "hyprctl dispatch split:workspace r+1", +      "on-scroll-down": "hyprctl dispatch split:workspace r-1",        "on-click": "activate"      },      "sway/window": { @@ -278,8 +278,8 @@          //"HDMI-A-1": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ],          "HDMI-A-1": [ 10, 11, 12, 13, 14, 15, 16, 17, 18 ],        }, -      "on-scroll-up": "hyprctl dispatch split-workspace e+1", -      "on-scroll-down": "hyprctl dispatch split-workspace e-1", +      "on-scroll-up": "hyprctl dispatch split:workspace r+1", +      "on-scroll-down": "hyprctl dispatch split:workspace r-1",        "on-click": "activate"      },      "sway/window": { | 
