My personal dotfiles
0
fork

Configure Feed

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

feat: changed file structure to support theme switcher

legoraft e57ff2ab b64f9c9a

+91 -1
+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)
+1 -1
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 --
+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 + }