diff --git a/hosts/totsugeki/desktop/default.nix b/hosts/totsugeki/desktop/default.nix index 1b3c418..2d84298 100644 --- a/hosts/totsugeki/desktop/default.nix +++ b/hosts/totsugeki/desktop/default.nix @@ -35,6 +35,8 @@ r2modman swww wl-clipboard + element-desktop + vesktop (import ./scripts/colorpicker.nix { inherit pkgs; }) (import ./scripts/currently-playing.nix { inherit pkgs; }) (import ./scripts/change-wallpaper.nix { inherit pkgs; }) @@ -47,8 +49,8 @@ pointerCursor = { gtk.enable = true; package = pkgs.phinger-cursors; - name = "phinger-cursors"; - size = 32; + name = "phinger-cursors-dark"; + size = 24; }; }; nixpkgs.config.allowUnfree = true; diff --git a/hosts/totsugeki/desktop/hyprland.nix b/hosts/totsugeki/desktop/hyprland.nix index 2b080d8..85c7cf6 100644 --- a/hosts/totsugeki/desktop/hyprland.nix +++ b/hosts/totsugeki/desktop/hyprland.nix @@ -5,10 +5,11 @@ settings = { monitor = "DP-1, 2560x1440@165, 0x0, 1"; - env = [ "XCURSOR_SIZE, 32" "QT_QPA_PLATFORMTHEME, qt5ct" ]; + env = [ "XCURSOR_SIZE, 24" "QT_QPA_PLATFORMTHEME, qt5ct" ]; exec-once = [ "hyprlock" + "hyprctl setcursor phinger-cursors-dark 24" "waybar" "swww init; swww img ~/.local/share/wallpapers/.current_image" "[workspace 1 silent] firefox" @@ -24,12 +25,12 @@ decoration = { rounding = 0; dim_inactive = true; - dim_strength = 0.3; + dim_strength = 0.5; drop_shadow = false; blur = { enabled = true; size = 3; - passes = 3; + passes = 2; noise = 5.0e-2; vibrancy = 0.25; vibrancy_darkness = 0.3; @@ -141,7 +142,8 @@ "minsize 1 1, title:^()$,class:^(steam)$" ]; - layerrule = [ "blur, waybar" "blur, rofi" "ignorezero, rofi" ]; + layerrule = + [ "blur, waybar" "blur, rofi" "ignorezero, rofi" "noanim, rofi" ]; input = { kb_layout = "es"; diff --git a/hosts/totsugeki/desktop/kitty.nix b/hosts/totsugeki/desktop/kitty.nix index 28063e5..0a6beb9 100644 --- a/hosts/totsugeki/desktop/kitty.nix +++ b/hosts/totsugeki/desktop/kitty.nix @@ -17,7 +17,7 @@ "ctrl+alt+9" = "goto_tab 9"; }; settings = { - "background_opacity" = "0.75"; + "background_opacity" = "0.90"; "dynamic_background_opacity" = true; "force_ltr" = "yes"; "disable_ligatures" = "never"; @@ -29,7 +29,8 @@ "tab_bar_edge" = "bottom"; "tab_bar_style" = "powerline"; "tab_powerline_style" = "round"; - "tab_title_template" = "{title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}"; + "tab_title_template" = + "{title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}"; "background" = "#1E1E2F"; }; theme = "Catppuccin-Mocha"; diff --git a/hosts/totsugeki/desktop/qt.nix b/hosts/totsugeki/desktop/qt.nix index fc59778..b2b3f18 100644 --- a/hosts/totsugeki/desktop/qt.nix +++ b/hosts/totsugeki/desktop/qt.nix @@ -2,6 +2,6 @@ home.packages = with pkgs; [ catppuccin-kde lightly-qt ]; qt = { enable = true; - platformTheme = "qtct"; + platformTheme.name = "qtct"; }; } diff --git a/hosts/totsugeki/desktop/waybar.nix b/hosts/totsugeki/desktop/waybar.nix index 66a432e..32f3e64 100644 --- a/hosts/totsugeki/desktop/waybar.nix +++ b/hosts/totsugeki/desktop/waybar.nix @@ -21,11 +21,11 @@ "hyprland/workspaces" = { format = "{icon}"; format-icons = { - "1" = " "; + "1" = "󰈹 "; "2" = " "; "3" = " "; "8" = " "; - "9" = " "; + "9" = " "; "10" = " "; default = " "; }; @@ -110,7 +110,7 @@ } window#waybar { - background: rgba(30, 30, 46, 0.8); + background: rgba(30, 30, 46, 0.9); color: #cdd6f4; margin: 4px; } diff --git a/hosts/totsugeki/development/nixvim/default.nix b/hosts/totsugeki/development/nixvim/default.nix index e6515e6..7ffec28 100644 --- a/hosts/totsugeki/development/nixvim/default.nix +++ b/hosts/totsugeki/development/nixvim/default.nix @@ -12,17 +12,19 @@ colorschemes.catppuccin = { enable = true; - flavour = "mocha"; - disableItalic = true; - integrations = { - cmp = true; - neotree = true; + settings = { + flavour = "mocha"; + no_italic = true; + integrations = { + cmp = true; + neotree = true; + }; }; }; globals.mapleader = " "; - options = { + opts = { number = true; cursorline = true; tabstop = 4;