diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index ee80037..2645193 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -64,8 +64,8 @@ env = HYPRCURSOR_SIZE,24 # https://wiki.hypr.land/Configuring/Variables/#general general { - gaps_in = 0 - gaps_out = 0 + gaps_in = 8 + gaps_out = 8 border_size = 1 @@ -84,15 +84,14 @@ general { # https://wiki.hypr.land/Configuring/Variables/#decoration decoration { - rounding = 0 - rounding_power = 0 + rounding = 10 # Change transparency of focused and unfocused windows active_opacity = 1.0 inactive_opacity = 1.0 shadow { - enabled = true + enabled = false range = 4 render_power = 3 color = rgba(1a1a1aee) @@ -110,7 +109,7 @@ decoration { # https://wiki.hypr.land/Configuring/Variables/#animations animations { - enabled = no, please :) + enabled = yes, please :) # Default curves, see https://wiki.hypr.land/Configuring/Animations/#curves # NAME, X0, Y0, X1, Y1 diff --git a/kitty/current-theme.conf b/kitty/current-theme.conf index 9d483b8..40197a4 100644 --- a/kitty/current-theme.conf +++ b/kitty/current-theme.conf @@ -1,20 +1,64 @@ -background #0000aa -foreground #ffffff -cursor #ffffff +## name: bl1nk +## author: dhay3 +## license: CC0 1.0 +## upstream: https://github.com/dhay3/kitty-bl1nk/blob/main/bl1nk.conf -color0 #000000 -color1 #aa0000 -color2 #00aa00 -color3 #aa5500 -color4 #0000aa -color5 #aa00aa -color6 #00aaaa -color7 #aaaaaa -color8 #555555 -color9 #ff5555 -color10 #55ff55 -color11 #ffff55 -color12 #5555ff -color13 #ff55ff -color14 #55ffff -color15 #ffffff +#: The basic colors +background #111111 +foreground #A0A0A0 +selection_foreground none +selection_background none + + +#: cursor colors +cursor none + + +#: URL underline color when hovering with mouse +url_color #0087bd + + +#: kitty window border colors and terminal bell colors +visual_bell_color none + + +#: Tab bar colors +active_tab_foreground #FFFFFF +active_tab_background #9C7BD7 +inactive_tab_foreground #FFFFFF +inactive_tab_background #545B7D + + +#: The basic 16 colors + +#: black +color0 #1A1C1D +color8 #505354 + +#: red +color1 #FF5894 +color9 #F92571 + +#: green +color2 #B5E354 +color10 #81B313 + +#: yellow +color3 #F5921D +color11 #FEED6B + +#: blue +color4 #4E81AA +color12 #0B72C1 + +#: magenta +color5 #8B54FE +color13 #9D6EFE + +#: cyan +color6 #465456 +color14 #889BA1 + +#: white +color7 #CBCBC5 +color15 #F8F8F2 diff --git a/kitty/kitty.conf b/kitty/kitty.conf index 89c113e..3253e13 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -3,6 +3,6 @@ hide_window_decorations yes # BEGIN_KITTY_THEME -# Tokyo Night +# bl1nk include current-theme.conf # END_KITTY_THEME \ No newline at end of file diff --git a/kitty/kitty.conf.bak b/kitty/kitty.conf.bak index 55b993d..89c113e 100644 --- a/kitty/kitty.conf.bak +++ b/kitty/kitty.conf.bak @@ -3,6 +3,6 @@ hide_window_decorations yes # BEGIN_KITTY_THEME -# 3024 Day +# Tokyo Night include current-theme.conf # END_KITTY_THEME \ No newline at end of file diff --git a/nvim/init.lua b/nvim/init.lua index 0a2d2a3..22c72b3 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -1,4 +1,4 @@ require("config.lazy") -vim.cmd('colorscheme blue') +vim.cmd('colorscheme cyberdream') diff --git a/nvim/lua/plugins/colors.lua b/nvim/lua/plugins/colors.lua index 5293e3d..6a574d9 100644 --- a/nvim/lua/plugins/colors.lua +++ b/nvim/lua/plugins/colors.lua @@ -39,4 +39,10 @@ return { } end, }, + + { + "scottmckendry/cyberdream.nvim", + lazy = false, + priority = 1000, + }, }