diff options
| author | silly <u65487754@gmail.com> | 2026-02-08 06:13:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-08 06:13:12 +0100 |
| commit | 5be091a80cd274b1f6d7ef817dfb2859ef6cb1a8 (patch) | |
| tree | d5645151893fa92b51c1608b1378efd1e0c57c64 /.config | |
| parent | bda24718ac50e11b76314911c6333025dceef962 (diff) | |
Add files via upload
Diffstat (limited to '.config')
| -rw-r--r-- | .config/hyprland.conf | 143 | ||||
| -rw-r--r-- | .config/hyprlock.conf | 60 |
2 files changed, 203 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 diff --git a/.config/hyprlock.conf b/.config/hyprlock.conf new file mode 100644 index 0000000..2e964f7 --- /dev/null +++ b/.config/hyprlock.conf @@ -0,0 +1,60 @@ +source = /home/silly/.cache/wal/colors-hyprland.conf + +background { + monitor = + path = /home/silly/.config/wallpaper/2.jpg + color = $background + blur_passes = 2 + contrast = 1 + brightness = 0.5 + vibrancy = 0.2 + vibrancy_darkness = 0.2 +} + +general { + hide_cursor = false + ignore_empty_input = true +} + +input-field { + monitor = + size = 250, 60 + outline_thickness = 2 + dots_size = 0.2 + dots_spacing = 0.35 + dots_center = true + outer_color = rgba(255, 255, 255, 0.6) + inner_color = rgb(25, 25, 25) + font_color = $foreground + fade_on_empty = false + rounding = -1 + check_color = $color2 + fail_color = $color1 + placeholder_text = <i>password...</i> + hide_input = false + position = 0, -200 + halign = center + valign = center +} + +label { + monitor = + text = cmd[update:1000] echo "$(date +"%A, %B %d")" + color = $foreground + font_size = 22 + font_family = JetBrains Mono + position = 0, 300 + halign = center + valign = center +} + +label { + monitor = + text = cmd[update:1000] echo "$(date +"%-I:%M")" + color = $foreground + font_size = 95 + font_family = JetBrains Mono Extrabold + position = 0, 200 + halign = center + valign = center +} |
