My personal dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

merge: merged local and remote

legoraft e9a51005 70febeb0

+124 -16
+2
.gitignore
··· 1 1 hyprpaper.conf 2 + 3 + **/**/current-theme.*
+29
hypr/.config/hypr/colors/nord.conf
··· 1 + # -- Raw nord colors -- 2 + $nord00 = rgb(2e3440) 3 + $nord01 = rgb(3b4252) 4 + $nord02 = rgb(434c5e) 5 + $nord03 = rgb(4c566a) 6 + 7 + $nord04 = rgb(d8dee9) 8 + $nord05 = rgb(e5e9f0) 9 + $nord06 = rgb(eceff4) 10 + 11 + $nord07 = rgb(8fbcbb) 12 + $nord08 = rgb(88c0d0) 13 + $nord09 = rgb(81a1c1) 14 + $nord10 = rgb(5e81ac) 15 + 16 + $nord11 = rgb(bf616a) 17 + $nord12 = rgb(d08770) 18 + $nord13 = rgb(ebcb8b) 19 + $nord14 = rgb(a3be8c) 20 + $nord15 = rgb(b48ead) 21 + 22 + # -- Color uses -- 23 + $fg = $nord06 24 + $bg = $nord00 25 + $highlight = $nord08 26 + $green = $nord14 27 + $red = $nord11 28 + $yellow = $nord13 29 + $shadow = rgba(1a1a1aee)
+33 -11
hypr/.config/hypr/hyprland.conf
··· 1 1 # -- Imports -- 2 2 source = ./hyprland/keybinds.conf 3 - source = ./hyprland/styling.conf 3 + source = ./hyprland/current-theme.conf 4 4 source = ./hyprland/autostart.conf 5 5 6 6 # -- Monitors -- ··· 55 55 } 56 56 57 57 # -- Rules -- 58 - windowrule = suppressevent maximize, class:.* 58 + windowrule { 59 + # Ignore maximize requests from all apps. You'll probably like this. 60 + name = suppress-maximize-events 61 + match:class = .* 62 + 63 + suppress_event = maximize 64 + } 59 65 60 - # Fix some dragging issues with XWayland 61 - windowrule = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0 66 + windowrule { 67 + # Fix some dragging issues with XWayland 68 + name = fix-xwayland-drags 69 + match:class = ^$ 70 + match:title = ^$ 71 + match:xwayland = true 72 + match:float = true 73 + match:fullscreen = false 74 + match:pin = false 75 + 76 + no_focus = true 77 + } 62 78 63 79 # Float godot windows except project 64 - windowrule = tile, class:Godot, title:(.*)(Godot Engine) 80 + windowrule { 81 + name = Godot float 82 + match:class = Godot 83 + match:title = (.*)(Godot Engine) 84 + 85 + tile = true 86 + } 65 87 66 88 # Blur rules 67 - layerrule = blur, notifications 68 - layerrule = ignorezero, notifications 69 - layerrule = blur, waybar 70 - layerrule = ignorezero, waybar 71 - layerrule = blur, rofi 72 - layerrule = ignorezero, rofi 89 + layerrule = match:namespace notifications, blur on 90 + layerrule = match:namespace notifications, ignore_alpha 0 91 + layerrule = match:namespace waybar, blur on 92 + layerrule = match:namespace waybar, ignore_alpha 0 93 + layerrule = match:namespace rofi, blur on 94 + layerrule = match:namespace rofi, ignore_alpha 0
+59
hypr/.config/hypr/themes/nord.conf
··· 1 + source = ../colors/nord.conf 2 + 3 + # -- Styling -- 4 + general { 5 + gaps_in = 3 6 + gaps_out = 5 7 + 8 + border_size = 2 9 + 10 + col.active_border = $highlight 11 + col.inactive_border = $bg 12 + 13 + resize_on_border = false 14 + allow_tearing = false 15 + 16 + layout = dwindle 17 + } 18 + 19 + decoration { 20 + rounding = 4 21 + rounding_power = 2 22 + 23 + active_opacity = 1.0 24 + inactive_opacity = 1.0 25 + 26 + shadow { 27 + enabled = true 28 + range = 4 29 + render_power = 3 30 + color = $shadow 31 + } 32 + 33 + blur { 34 + enabled = true 35 + size = 2 36 + passes = 3 37 + } 38 + } 39 + 40 + # -- Animations -- 41 + animations { 42 + enabled = true 43 + 44 + bezier = easeOut, 0, 0.1, 0.6, 1 45 + bezier = easeIn, 0.4, 0, 1, 0.9 46 + bezier = ease, 0.4, 0, 0.6, 1 47 + bezier = linear, 0, 0, 1, 1 48 + 49 + animation = global, 1, 1, default 50 + animation = border, 0 51 + animation = fade, 1, 0.5, linear 52 + animation = workspaces, 1, 2, easeOut, slide 53 + 54 + animation = windows, 1, 1.5, ease, slide 55 + animation = windowsIn, 1, 1, easeIn, slide 56 + animation = windowsOut, 1, 0.5, easeOut, slide 57 + 58 + animation = layers, 1, 1.5, ease, fade 59 + }
+1 -5
zed/.config/zed/settings.json
··· 1 1 { 2 - "features": { 3 - "copilot": false 4 - }, 5 - "theme": "One Dark", 2 + "theme": "Kanagawa Wave", 6 3 "telemetry": { 7 4 "diagnostics": false, 8 5 "metrics": false ··· 19 16 "buffer_font_family": "Source Code Pro", 20 17 "buffer_font_fallbacks": ["Symbols Nerd Font"], 21 18 "vim_mode": false, 22 - "relative_line_numbers": true 23 19 }