diff options
Diffstat (limited to '.config/hyprland.conf')
| -rw-r--r-- | .config/hyprland.conf | 143 |
1 files changed, 143 insertions, 0 deletions
diff --git a/.config/hyprland.conf b/.config/hyprland.conf new file mode 100644 index 0000000..de7520f --- /dev/null +++ b/.config/hyprland.conf @@ -0,0 +1,143 @@ +monitor = HDMI-A-1, 1920x1080@200, 0x0, 1 +monitor = DP-1, 1920x1080@144, -1080x-280, 1, transform, 3 + +env = XCURSOR_THEME,Win10OS-cursors +env = XCURSOR_SIZE,24 +env = HYPRCURSOR_THEME,Win10OS-cursors +env = HYPRCURSOR_SIZE,24 + +$terminal = kitty +$fileManager = nautilus +$menu = fuzzel +$mainMod = SUPER + +exec-once = swww-daemon +exec-once = hyprctl setcursor Win10OS-cursors 24 +exec-once = wl-paste --type text --watch cliphist store +exec-once = wl-paste --type image --watch cliphist store + +general { + gaps_in = 5 + gaps_out = 10 + border_size = 0 + resize_on_border = false + allow_tearing = false + layout = dwindle +} + +decoration { + rounding = 15 + rounding_power = 2 + active_opacity = 1 + inactive_opacity = 1 + shadow { + enabled = true + range = 4 + render_power = 3 + color = rgba(1a1a1aee) + } + blur { + enabled = true + size = 3 + passes = 1 + vibrancy = 0.1696 + } +} + +animations { + enabled = yes + bezier = easeOutQuint, 0.23, 1, 0.32, 1 + bezier = easeInOutCubic, 0.65, 0.05, 0.36, 1 + bezier = linear, 0, 0, 1, 1 + bezier = almostLinear, 0.5, 0.5, 0.75, 1 + bezier = quick, 0.15, 0, 0.1, 1 + animation = global, 1, 10, default + animation = border, 1, 5.39, easeOutQuint + animation = windows, 1, 4.79, easeOutQuint + animation = windowsIn, 1, 4.1, easeOutQuint, popin 87% + animation = windowsOut, 1, 1.49, linear, popin 87% + animation = fadeIn, 1, 1.73, almostLinear + animation = fadeOut, 1, 1.46, almostLinear + animation = fade, 1, 3.03, quick + animation = layers, 1, 3.81, easeOutQuint + animation = layersIn, 1, 4, easeOutQuint, fade + animation = layersOut, 1, 1.5, linear, fade + animation = workspaces, 1, 1.94, almostLinear, fade +} + +input { + kb_layout = us + follow_mouse = 1 + sensitivity = 0 + touchpad { + natural_scroll = false + } +} + +misc { + force_default_wallpaper = 0 + disable_hyprland_logo = true + disable_splash_rendering = true +} + +dwindle { + pseudotile = true + preserve_split = true +} + +master { + new_status = master +} + +bind = $mainMod, Q, exec, $terminal +bind = $mainMod, C, killactive, +bind = $mainMod, M, exec, command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch exit +bind = $mainMod, L, exec, hyprlock +bind = $mainMod, E, exec, $fileManager +bind = $mainMod, V, togglefloating, +bind = $mainMod, R, exec, $menu +bind = $mainMod, P, pseudo, +bind = $mainMod, J, togglesplit, +bind = $mainMod, T, exec, ~/.config/fuzzel/master.sh +bind = $mainMod, F, fullscreen, 0 +bind = ALT SHIFT, S, exec, grim -g "$(slurp)" - | wl-copy + +bind = $mainMod, left, movefocus, l +bind = $mainMod, right, movefocus, r +bind = $mainMod, up, movefocus, u +bind = $mainMod, down, movefocus, d + +bind = SHIFT, left, movewindow, l +bind = SHIFT, right, movewindow, r +bind = SHIFT, up, movewindow, u +bind = SHIFT, down, movewindow, d + +bind = $mainMod, 1, workspace, 1 +bind = $mainMod, 2, workspace, 2 +bind = $mainMod, 3, workspace, 3 +bind = $mainMod, 4, workspace, 4 +bind = $mainMod, 5, workspace, 5 +bind = $mainMod, 6, workspace, 6 +bind = $mainMod, 7, workspace, 7 +bind = $mainMod, 8, workspace, 8 +bind = $mainMod, 9, workspace, 9 +bind = $mainMod, 0, workspace, 10 + +bind = $mainMod SHIFT, 1, movetoworkspace, 1 +bind = $mainMod SHIFT, 2, movetoworkspace, 2 +bind = $mainMod SHIFT, 3, movetoworkspace, 3 +bind = $mainMod SHIFT, 4, movetoworkspace, 4 +bind = $mainMod SHIFT, 5, movetoworkspace, 5 +bind = $mainMod SHIFT, 6, movetoworkspace, 6 +bind = $mainMod SHIFT, 7, movetoworkspace, 7 +bind = $mainMod SHIFT, 8, movetoworkspace, 8 +bind = $mainMod SHIFT, 9, movetoworkspace, 9 +bind = $mainMod SHIFT, 0, movetoworkspace, 10 + +bind = $mainMod, S, togglespecialworkspace, magic +bind = $mainMod SHIFT, S, movetoworkspace, special:magic + +bind = $mainMod, mouse_down, workspace, e+1 +bind = $mainMod, mouse_up, workspace, e-1 +bindm = $mainMod, mouse:272, movewindow +bindm = $mainMod, mouse:273, resizewindow |
