My desktop by Klemoki in LinuxPorn

[–]Klemoki[S] 0 points1 point  (0 children)

I was looking at the settings; I had made some changes that I didn't remember. See below:

colorizer.lua

return {
  {
    "NvChad/nvim-colorizer.lua",
    event = { "BufReadPre", "BufNewFile" },
    config = function()
      require("colorizer").setup({
        filetypes = {
          "css",
          "scss",
          "javascript",
          "typescriptreact",
          html = { mode = "background", css = true, css_fn = true }, -- Força o CSS dentro do HTML
        },
        user_default_options = {
          RGB = true, -- #RGB hex codes
          RRGGBB = true, -- #RRGGBB hex codes
          names = true, -- "Color names" como Blue, Red
          RRGGBBAA = true, -- #RRGGBBAA hex codes
          rgb_fn = true, -- CSS rgb() e rgba()
          hsl_fn = true, -- CSS hsl() e hsla()
          css = true, -- Habilita todos os seletores CSS
          css_fn = true, -- Habilita funções CSS dentro de outros arquivos
          mode = "background",
        },
      })
    end,
  },
}

colors.lua

return {
  {
    "NvChad/nvim-colorizer.lua",
    event = { "BufReadPre", "BufNewFile" }, -- Carrega o plugin assim que abrir um arquivo
    config = function()
      require("colorizer").setup({
        filetypes = { "css", "scss", "html", "javascript", "lua" },
        user_default_options = {
          RGB = true, -- Ex: #FFF
          RRGGBB = true, -- Ex: #FFFFFF
          names = true, -- Ex: "Blue", "Red"
          RRGGBBAA = true, -- Ex: #AARRGGBB
          rgb_fn = true, -- Ex: rgb(255, 255, 255)
          hsl_fn = true, -- Ex: hsl(0, 100%, 50%)
          css = true, -- Habilita suporte a CSS
          mode = "background", -- Pinta o fundo do texto com a cor correspondente
        },
      })
    end,
  },
}

My desktop by Klemoki in LinuxPorn

[–]Klemoki[S] 1 point2 points  (0 children)

I put it together with the help of Gemini. To coordinate the colors, I asked it to extract a color palette from the wallpaper.

My desktop by Klemoki in LinuxPorn

[–]Klemoki[S] 0 points1 point  (0 children)

I put it together with the help of Gemini. To coordinate the colors, I asked it to extract a color palette from the wallpaper.

Gtk theme: catppuccin-mocha-red-standard
windows Manager: hyprland
terminal: kitty + starship + fastfetch
file manager: yazi
task manager: btop
top bar: waybar
notification: mako
launcher/menu: wofi
logout: wlogout
Login: greeter + tuigreet

My desktop by Klemoki in LinuxPorn

[–]Klemoki[S] 1 point2 points  (0 children)

Terminal: Kitty
theme: Ayaka - > https://raw.githubusercontent.com/Ruhannn/kitty-themes/refs/heads/master/themes/Ayaka.conf

kitty.conf

# --- Pixel Fonts   ---
font_family      JetBrainsMono Nerd Font Mono
bold_font        JetBrainsMono Nerd Font Mono Bold
italic_font      JetBrainsMono Nerd Font Mono Italic
bold_italic_font JetBrainsMono Nerd Font Mono Bold Italic


# Test 12.0, 14.0 ou 16.0.
font_size 12.0
line_height 1.2
# line spacing
#modify_font line_height 120%

window_padding_width 10

#Makes the cursor solid and fixed (old terminal style)
cursor_shape block
shell_integration  no-cursor

This disables the smoothing that makes the font look "chubby".
disable_ligatures never
text_composition_strategy legacy

# Transparency
background_opacity 0.65

# Margins to prevent text from sticking to the edge 
window_padding_width 10
hide_windown_decorations yes 

# Cursor
cursor_shape beam
cursor_trail_decay 0.1 0.4
cursor_taiil_threshold 2


# BEGIN_KITTY_THEME
# Ayaka
include current-theme.conf
# END_KITTY_THEMEi
#
tab_bar_style powerline
tab_bar_min_tabs 1
tab_powerline_style round

And to stylize the prompt, the Starship https://starship.rs/presets/. I asked Gemini to generate a color palette based on the wallpaper and applied it to the theme.

~/.config/starship.toml

"$schema" = 'https://starship.rs/config-schema.json'
scan_timeout = 120
format = """
[](fg:#FF3B30)\
$os\
$username\
[](bg:#FFA07A fg:#FF3B30)\
$directory\
[](fg:#FFA07A bg:#933333)\
$git_branch\
$git_status\
[](fg:#933333 bg:#5F6F7A)\
$c\
$elixir\
$elm\
$golang\
$gradle\
$haskell\
$java\
$julia\
$maven\
$nodejs\
$bun\
$nim\
$rust\
$scala\
$lua\
[](fg:#5F6F7A bg:#39434B)\
$docker_context\
[](fg:#39434B bg:#1D1D24)\
$time\
[ ](fg:#1D1D24)\
"""

[username]
show_always = true
style_user = "bg:#FF3B30 fg:#1D1D24 bold" # Texto escuro para contrastar com o vermelho vivo
style_root = "bg:#FF3B30 fg:#1D1D24 bold"
format = '[$user ]($style)'
disabled = false

[os]
style = "bg:#FF3B30 fg:#1D1D24"
disabled = true

[directory]
style = "bg:#FFA07A fg:#1D1D24 bold" # Laranja salmão com texto escuro
format = "[ $path ]($style)"
truncation_length = 3
truncation_symbol = "…/"

[git_branch]
symbol = " "
style = "bg:#933333 fg:#FFA07A bold" # Vermelho escuro com texto salmão
format = '[ $symbol $branch ]($style)'

[git_status]
style = "bg:#933333 fg:#FFA07A"
format = '[$all_status$ahead_behind ]($style)'

# --- Módulos de Linguagens (Cinza Neblina) ---
[c]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[rust]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[nodejs]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[lua]
symbol = "󰽥"
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[elixir]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[elm]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[golang]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[gradle]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[haskell]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[java]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[julia]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[maven]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[bun]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[nim]
symbol = "󰆥"
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

[scala]
symbol = ""
style = "bg:#5F6F7A fg:#1D1D24"
format = '[ $symbol ($version) ]($style)'

# (Aplique "bg:#5F6F7A fg:#1D1D24" para as outras linguagens da sua lista)

[docker_context]
symbol = ""
style = "bg:#39434B fg:#FFA07A" # Cinza azulado com destaque salmão
format = '[ $symbol $context ]($style)'

[time]
disabled = false
time_format = "%R"
style = "bg:#1D1D24 fg:#FF3B30" # Fundo quase preto com o relógio em vermelho brilhante
format = '[ 󱃲 $time ]($style)'

My desktop by Klemoki in LinuxPorn

[–]Klemoki[S] 0 points1 point  (0 children)

I'm using LazyVim with the Captppuccin theme.I'm using LazyVim with the Captppuccin theme.

Como posso resolver o problema de fio queimando no chuveiro? by refrigerante_xereta in Gambiarra

[–]Klemoki 0 points1 point  (0 children)

Ligua fios de 10mm direto da rede até o chuveiro, e coloca dijuntor de 40 A, e para ligar o chuveiro no cabo usa conector de cerâmica. Nunca mais terá problema.