diff --git a/flake.lock b/flake.lock index e68b7ac..7bcd03f 100644 --- a/flake.lock +++ b/flake.lock @@ -746,6 +746,22 @@ } }, "nixpkgs_5": { + "locked": { + "lastModified": 1744536153, + "narHash": "sha256-awS2zRgF4uTwrOKwwiJcByDzDOdo3Q1rPZbiHQg/N38=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "18dd725c29603f582cf1900e0d25f9f1063dbf11", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_6": { "locked": { "lastModified": 1751984180, "narHash": "sha256-LwWRsENAZJKUdD3SpLluwDmdXY9F45ZEgCb0X+xgOL0=", @@ -867,13 +883,32 @@ "nixpkgs": "nixpkgs_4", "nixvim": "nixvim", "nur": "nur", + "rust-overlay": "rust-overlay", "spicetify-nix": "spicetify-nix", "unstable": "unstable" } }, + "rust-overlay": { + "inputs": { + "nixpkgs": "nixpkgs_5" + }, + "locked": { + "lastModified": 1762828736, + "narHash": "sha256-RxtFHWZpKwVcWHhx88E2NhWuBbgYVqIoIDynGs5FoJs=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "8d5baa5628f6dbd7ce6beca3c299bae27755204c", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, "spicetify-nix": { "inputs": { - "nixpkgs": "nixpkgs_5", + "nixpkgs": "nixpkgs_6", "systems": "systems_3" }, "locked": { diff --git a/flake.nix b/flake.nix index 4f3f94b..8125e4b 100644 --- a/flake.nix +++ b/flake.nix @@ -45,6 +45,7 @@ home-manager.url = "github:nix-community/home-manager/release-24.11"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; + rust-overlay.url = "github:oxalica/rust-overlay"; }; outputs = @@ -54,10 +55,12 @@ home-manager, catppuccin, nixvim, + rust-overlay, ... }: let + # Common Configuration commonModules = [ ( @@ -128,6 +131,12 @@ home-manager.nixosModules.home-manager (commonHomeManagerConfig { inherit username monitorSetup; }) ./modules/containerization + + { + nixpkgs.overlays = [ + inputs.rust-overlay.overlays.default + ] ++ builtins.attrValues (import ./overlays); + } ] ++ extraModules; diff --git a/hosts/m920q/default.nix b/hosts/m920q/default.nix index 51dfac3..87770e3 100644 --- a/hosts/m920q/default.nix +++ b/hosts/m920q/default.nix @@ -1,9 +1,5 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). - { - pkgs, + lib, ... }: { @@ -36,11 +32,12 @@ networking = { hostName = "nix-desktop"; - networkmanager.enable = true; - #useDHCP = lib.mkForce true; - #dhcpcd.enable = true; - interfaces = { - eno1.ipv4.addresses = [ + networkmanager.enable = false; + useNetworkd = true; + useDHCP = false; + + interfaces.eno1 = { + ipv4.addresses = [ { address = "192.168.2.40"; prefixLength = 24; @@ -58,14 +55,21 @@ "1.1.1.1" "8.8.8.8" ]; + + wireless = { + enable = true; + userControlled.enable = false; + networks = { + "LANFRED".psk = "CooleJungsWG"; + }; + }; + }; + systemd.services.systemd-networkd-wait-online.enable = lib.mkForce false; + hardware.graphics.enable = true; system.stateVersion = "25.11"; # Did you read the comment? - environment.systemPackages = [ - pkgs.onlyoffice-bin - ]; - } diff --git a/modules/qemu.nix b/modules/qemu.nix index 443dca8..5e8661e 100644 --- a/modules/qemu.nix +++ b/modules/qemu.nix @@ -3,11 +3,21 @@ environment.systemPackages = with pkgs; [ qemu quickemu + quickgui nemu ]; + systemd.tmpfiles.rules = [ "L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware" ]; + boot.binfmt.emulatedSystems = [ "aarch64-linux" "riscv64-linux" ]; + + virtualisation.libvirtd.enable = true; + + environment.etc."qemu/bridge.conf".text = '' + allow br0 + ''; + } diff --git a/modules/regreet/regreet.nix b/modules/regreet/regreet.nix index f12add6..821784f 100644 --- a/modules/regreet/regreet.nix +++ b/modules/regreet/regreet.nix @@ -15,6 +15,8 @@ }; */ + environment.variables.QT_QPA_PLATFORMTHEME = "qt6ct"; + environment.etc = { "greetd/background.png".source = ../../wallpapers/lucy_with_cat.png; "greetd/environments".text = '' @@ -22,22 +24,21 @@ fish ''; + "greetd/wayland-sessions/hyprland.desktop".text = '' + [Desktop Entry] + Name=Hyprland + Comment=Hyprland WM + Exec=Hyprland + Type=Application + ''; /* - "greetd/wayland-sessions/hyprland.desktop".text = '' - [Desktop Entry] - Name=Hyprland - Comment=Hyprland WM - Exec=Hyprland - Type=Application - ''; - - "greetd/wayland-sessions/niri.desktop".text = '' - [Desktop Entry] - Name=Niri - Comment=Hyprland WM - Exec=niri - Type=Application - ''; + "greetd/wayland-sessions/niri.desktop".text = '' + [Desktop Entry] + Name=Niri + Comment=Hyprland WM + Exec=niri + Type=Application + ''; */ }; diff --git a/modules/services.nix b/modules/services.nix index f006a95..1878952 100644 --- a/modules/services.nix +++ b/modules/services.nix @@ -20,5 +20,6 @@ HandleHibernateKey=ignore ''; + flatpak.enable = true; }; } diff --git a/modules/system.nix b/modules/system.nix index 8f96b7c..0275553 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -1,6 +1,7 @@ { pkgs, username, + lib, ... }: { @@ -17,6 +18,25 @@ ]; }; + xdg = { + portal = { + enable = true; + xdgOpenUsePortal = true; + config = { + common.default = [ "gtk" ]; + hyprland.default = [ + "gtk" + "hyprland" + ]; + }; + + extraPortals = [ + pkgs.xdg-desktop-portal-gtk + pkgs.xdg-desktop-portal-hyprland + ]; + }; + }; + programs.steam.enable = true; programs.dconf.enable = true; @@ -37,12 +57,13 @@ sysstat lm_sensors # for `sensors` command ethtool - pciutils # lspci + pciutils # lspci:wwith usbutils # lsusb lshw nvme-cli smartmontools bluez + impala # Graphics libGL @@ -53,7 +74,6 @@ cpufetch hyfetch ramfetch - neofetch ghfetch libnotify @@ -67,6 +87,9 @@ iftop # network monitor iperf3 # network tester nmap # network discovery + rustscan + rustup + perl eza # ls replacement curl dnsutils @@ -80,11 +103,13 @@ zstd gnupg fzf + tabiew # nix related nix-index nix-tree nix-health + direnv # Archives zip @@ -92,10 +117,9 @@ p7zip xz - postman - #teamspeak6-client ]; + security.pam.services.swaylock = { }; security.polkit.enable = true; security.rtkit.enable = true; environment.sessionVariables = { diff --git a/modules/thunderbird.nix b/modules/thunderbird.nix index 57f52a7..3f4a91e 100644 --- a/modules/thunderbird.nix +++ b/modules/thunderbird.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ ... }: { programs.thunderbird.enable = true; } diff --git a/overlays/default.nix b/overlays/default.nix new file mode 100644 index 0000000..58e5025 --- /dev/null +++ b/overlays/default.nix @@ -0,0 +1,10 @@ +let + dir = ./.; + files = builtins.filter (f: f != "default.nix") (builtins.attrNames (builtins.readDir dir)); +in +builtins.listToAttrs ( + map (f: { + name = f; + value = import "${dir}/${f}"; + }) files +) diff --git a/overlays/tabiew.nix b/overlays/tabiew.nix new file mode 100644 index 0000000..f04800e --- /dev/null +++ b/overlays/tabiew.nix @@ -0,0 +1,52 @@ +# overlays/tabiew.nix +self: super: +let + # Try to use rust-bin if available, otherwise fall back to latest from nixpkgs-mozilla + rustToolchain = + if super ? rust-bin then + super.rust-bin.nightly.latest.default + else + super.latest.rustChannels.nightly.rust; + + rustPlatform = super.makeRustPlatform { + cargo = rustToolchain; + rustc = rustToolchain; + }; +in +{ + tabiew = rustPlatform.buildRustPackage rec { + pname = "tabiew"; + version = "0.11.1"; + + src = super.fetchFromGitHub { + owner = "shshemi"; + repo = "tabiew"; + rev = "v${version}"; + sha256 = "sha256-RvbHXnDaoqMHjA9u9kFs5MB6xeQG/E35PEu+1LIXIBU="; + }; + + cargoLock = { + lockFile = "${src}/Cargo.lock"; + }; + + # Build dependencies needed for openssl-sys + nativeBuildInputs = with super; [ + pkg-config + perl + ]; + + # Runtime dependencies + buildInputs = with super; [ + openssl + ]; + + # Disable cargo-auditable as it doesn't support edition2024 yet + auditable = false; + + meta = with super.lib; { + description = "A simple CSV viewer"; + homepage = "https://github.com/shshemi/tabiew"; + license = licenses.mit; + }; + }; +} diff --git a/programs/wm/common/neovim/default.nix b/programs/wm/common/neovim/default.nix index 07dac37..9dd952b 100644 --- a/programs/wm/common/neovim/default.nix +++ b/programs/wm/common/neovim/default.nix @@ -79,5 +79,8 @@ # Avante curl cargo + clang + zig + rustc ]; } diff --git a/programs/wm/common/wallpaper/swww.nix b/programs/wm/common/wallpaper/swww.nix index 5ca30b5..ff6afae 100644 --- a/programs/wm/common/wallpaper/swww.nix +++ b/programs/wm/common/wallpaper/swww.nix @@ -2,7 +2,7 @@ { home.file = { "Pictures/Wallpapers" = { - source = ../../wallpapers; + source = ../../../../wallpapers; recursive = true; }; }; diff --git a/programs/wm/common/waybar/configs/style.css b/programs/wm/common/waybar/configs/style.css index 70a65ce..0efb5fe 100644 --- a/programs/wm/common/waybar/configs/style.css +++ b/programs/wm/common/waybar/configs/style.css @@ -126,6 +126,7 @@ window#waybar.hidden { background: @overlay2; border-radius: 10px; margin: 5px; + color: @crust; } #custom-cava { @@ -145,6 +146,7 @@ window#waybar.hidden { /* Weather */ #custom-weather { background: @overlay2; + color: @crust; border-radius: 10px; margin: 5px 20px; padding: 0px 10px; diff --git a/programs/wm/default.nix b/programs/wm/default.nix index 23bef30..9068aa4 100644 --- a/programs/wm/default.nix +++ b/programs/wm/default.nix @@ -6,26 +6,11 @@ ./common/cava.nix ./common/rofi ./xdg.nix + ./qt/qt.nix + ./gtk/gtk.nix ./common/neovim ./common/audio.nix + ./common/floorp.nix ]; - gtk = { - enable = true; - - theme = { - package = pkgs.flat-remix-gtk; - name = "Flat-Remix-GTK-Grey-Darkest"; - }; - - iconTheme = { - package = pkgs.adwaita-icon-theme; - name = "Adwaita"; - }; - - font = { - name = "Sans"; - size = 12; - }; - }; } diff --git a/programs/wm/gtk/gtk.nix b/programs/wm/gtk/gtk.nix new file mode 100644 index 0000000..f352802 --- /dev/null +++ b/programs/wm/gtk/gtk.nix @@ -0,0 +1,21 @@ +{ pkgs, ... }: +{ + gtk = { + enable = true; + + theme = { + package = pkgs.flat-remix-gtk; + name = "Flat-Remix-GTK-Grey-Darkest"; + }; + + iconTheme = { + package = pkgs.adwaita-icon-theme; + name = "Adwaita"; + }; + + font = { + name = "Sans"; + size = 12; + }; + }; +} diff --git a/programs/wm/niri/config.kdl b/programs/wm/niri/config.kdl index 8848c0d..7759e30 100644 --- a/programs/wm/niri/config.kdl +++ b/programs/wm/niri/config.kdl @@ -1,18 +1,30 @@ input { keyboard { - xkb { - layout "de" - } + xkb { + layout "de" + variant "mac" + } } + focus-follows-mouse + touchpad { tap natural-scroll } + + tablet { + map-to-output "DP-1" + } + + touch { + map-to-output "DP-1" + } } output "DP-1" { position x=1920 y=0 + variable-refresh-rate on-demand=true } output "HDMI-A-2" { @@ -21,21 +33,28 @@ output "HDMI-A-2" { layout { gaps 16 - center-focused-column "always" + center-focused-column "never" + + preset-column-widths { + proportion 0.125 + proportion 0.75 + proportion 0.125 + } focus-ring { - //off - width 2 - active-color "#1e1e2e55" - inactive-color "#11111b55" + off + width 4 + active-gradient from="#fab387" to="#f9e2af" angle=45 + //inactive-color "#11111b55" } border { off - width 2 - active-color "#a6e3a1" - inactive-color "#f38ba8" + width 4 + //active-color "#a6e3a1" + inactive-color "#cba6f7" + //urgent-color "#f38ba8" } @@ -49,8 +68,8 @@ layout { } spawn-at-startup "waybar" -spawn-at-startup "swaync" -spawn-at-startup "while true; do sleep 300; $HOME/.config/hypr/rotate-wallpaper.sh" +spawn-at-startup "mako" +spawn-at-startup "swww-daemon" screenshot-path "~/Pictures/Screenshots/%Y-%m-%d_%H-%M-%S.png" binds { @@ -79,6 +98,7 @@ binds { Super+A { spawn "rofi" "-show" "window" "-theme" ".config/rofi/custom.rasi"; } Super+R { spawn "rofi" "-show" "drun" "-theme" ".config/rofi/custom.rasi"; } Super+S { spawn "rofi" "-show" "p" "-modi" "p:rofi-power-menu" "-theme" ".config/rofi/power.rasi"; } + Super+L { spawn "swaylock"; } // Screenshot Super+Z { screenshot-screen; } @@ -103,8 +123,21 @@ binds { Super+7 { focus-workspace 7; } Super+8 { focus-workspace 8; } Super+9 { focus-workspace 9; } + + // Switch window to Workspaces + Super+Shift+1 { move-window-to-workspace 1; } + Super+Shift+2 { move-window-to-workspace 2; } + Super+Shift+3 { move-window-to-workspace 3; } + Super+Shift+4 { move-window-to-workspace 4; } + Super+Shift+5 { move-window-to-workspace 5; } + Super+Shift+6 { move-window-to-workspace 6; } + Super+Shift+7 { move-window-to-workspace 7; } + Super+Shift+8 { move-window-to-workspace 8; } + Super+Shift+9 { move-window-to-workspace 9; } // Focus Window - Super+Shift+Left { focus-column-left; } - Super+Shift+Right { focus-column-right; } + Super+Left { focus-column-left; } + Super+Right { focus-column-right; } + Super+Down { focus-workspace-down; } + Super+Up { focus-workspace-up; } } diff --git a/programs/wm/niri/default.nix b/programs/wm/niri/default.nix index d48e836..792bc15 100644 --- a/programs/wm/niri/default.nix +++ b/programs/wm/niri/default.nix @@ -3,7 +3,7 @@ ... }: { - # imports = [ ./niri-switcher.nix ]; + imports = [ ./swaylock.nix ]; home.packages = with pkgs; [ niri diff --git a/programs/wm/niri/swaylock.nix b/programs/wm/niri/swaylock.nix new file mode 100644 index 0000000..8707656 --- /dev/null +++ b/programs/wm/niri/swaylock.nix @@ -0,0 +1,35 @@ +{ lib, ... }: +{ + programs.swaylock = { + enable = true; + settings = lib.mkForce { + image = "$HOME/Pictures/Wallpapers/rain.gif"; + #show-keyboard-layout = true; + font = "JetbrainsMono Nerd Font"; + font-size = 24; + text-color = "cdd6f4"; + + # indicator + indicator-idle-visible = true; + indicator-radius = 150; + indicator-thickness = 20; + inside-color = "11111b00"; + + key-hl-color = "fab387"; + + line-uses-ring = true; + line-color = "cdd6f400"; + line-clear-color = "cdd6f400"; + line-wrong-color = "cdd6f400"; + line-caps-lock-color = "cdd6f400"; + line-ver-color = "cdd6f400"; + + ring-color = "cba6f7"; + ring-clear-color = "89dceb"; + ring-caps-color = "74c7ec"; + ring-ver-color = "a6e3a1"; + ring-wrong-color = "f38ba8"; + }; + }; + +} diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-blue.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-blue.conf new file mode 100644 index 0000000..3c3d4ab --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-blue.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ff8caaee, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff8caaee +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-flamingo.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-flamingo.conf new file mode 100644 index 0000000..9346883 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-flamingo.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ffeebebe, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ffeebebe +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-green.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-green.conf new file mode 100644 index 0000000..9ba4c48 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-green.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ffa6d189, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ffa6d189 +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-lavender.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-lavender.conf new file mode 100644 index 0000000..d04568d --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-lavender.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ffbabbf1, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ffbabbf1 +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-maroon.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-maroon.conf new file mode 100644 index 0000000..91e2c1c --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-maroon.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ffea999c, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ffea999c +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-mauve.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-mauve.conf new file mode 100644 index 0000000..bc8f2fa --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-mauve.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ffca9ee6, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ffca9ee6 +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-peach.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-peach.conf new file mode 100644 index 0000000..bcb2f6c --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-peach.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ffef9f76, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ffef9f76 +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-pink.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-pink.conf new file mode 100644 index 0000000..93d3f57 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-pink.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #fff4b8e4, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #fff4b8e4 +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-red.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-red.conf new file mode 100644 index 0000000..124d9ad --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-red.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ffe78284, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ffe78284 +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-rosewater.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-rosewater.conf new file mode 100644 index 0000000..a72e393 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-rosewater.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #fff2d5cf, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #fff2d5cf +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-sapphire.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-sapphire.conf new file mode 100644 index 0000000..c99aae3 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-sapphire.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ff85c1dc, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff85c1dc +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-sky.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-sky.conf new file mode 100644 index 0000000..cfe309e --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-sky.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ff99d1db, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff99d1db +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-teal.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-teal.conf new file mode 100644 index 0000000..7a03148 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-teal.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ff81c8be, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff81c8be +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-frappe-yellow.conf b/programs/wm/qt/catppuccin/catppuccin-frappe-yellow.conf new file mode 100644 index 0000000..f8e33fc --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-frappe-yellow.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffc6d0f5, #ff51576d, #ff626880, #ff414559, #ff232634, #ff292c3c, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff232634, #ffe5c890, #ff232634, #ff8caaee, #ffbabbf1, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ffe5c890 +inactive_colors=#ff838ba7, #ff303446, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff838ba7, #ffc6d0f5, #ff838ba7, #ff303446, #ff292c3c, #ff232634, #ff414559, #ff838ba7, #ff838ba7, #ff838ba7, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff414559 +disabled_colors=#ff737994, #ff414559, #ff51576d, #ff414559, #ff232634, #ff292c3c, #ff737994, #ffc6d0f5, #ff737994, #ff303446, #ff292c3c, #ff232634, #ff292c3c, #ff737994, #ffadb7cd, #ffcfd0dd, #ff292c3c, #ffffffff, #ff303446, #ffc6d0f5, #80737994, #ff292c3c diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-blue.conf b/programs/wm/qt/catppuccin/catppuccin-latte-blue.conf new file mode 100644 index 0000000..99c5136 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-blue.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ff1e66f5, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ff1e66f5 +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-flamingo.conf b/programs/wm/qt/catppuccin/catppuccin-latte-flamingo.conf new file mode 100644 index 0000000..3b5b672 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-flamingo.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffdd7878, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffdd7878 +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-green.conf b/programs/wm/qt/catppuccin/catppuccin-latte-green.conf new file mode 100644 index 0000000..3ae0a47 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-green.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ff40a02b, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ff40a02b +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-lavender.conf b/programs/wm/qt/catppuccin/catppuccin-latte-lavender.conf new file mode 100644 index 0000000..f6b2826 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-lavender.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ff7287fd, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ff7287fd +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-maroon.conf b/programs/wm/qt/catppuccin/catppuccin-latte-maroon.conf new file mode 100644 index 0000000..fdafbec --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-maroon.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe64553, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe64553 +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-mauve.conf b/programs/wm/qt/catppuccin/catppuccin-latte-mauve.conf new file mode 100644 index 0000000..da13966 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-mauve.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ff8839ef, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ff8839ef +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-peach.conf b/programs/wm/qt/catppuccin/catppuccin-latte-peach.conf new file mode 100644 index 0000000..67dc281 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-peach.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #fffe640b, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #fffe640b +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-pink.conf b/programs/wm/qt/catppuccin/catppuccin-latte-pink.conf new file mode 100644 index 0000000..cffa16a --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-pink.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffea76cb, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffea76cb +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-red.conf b/programs/wm/qt/catppuccin/catppuccin-latte-red.conf new file mode 100644 index 0000000..a6ba3a6 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-red.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffd20f39, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffd20f39 +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-rosewater.conf b/programs/wm/qt/catppuccin/catppuccin-latte-rosewater.conf new file mode 100644 index 0000000..77b5292 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-rosewater.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffdc8a78, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffdc8a78 +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-sapphire.conf b/programs/wm/qt/catppuccin/catppuccin-latte-sapphire.conf new file mode 100644 index 0000000..2eb24c5 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-sapphire.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ff209fb5, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ff209fb5 +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-sky.conf b/programs/wm/qt/catppuccin/catppuccin-latte-sky.conf new file mode 100644 index 0000000..2a7ad09 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-sky.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ff04a5e5, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ff04a5e5 +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-teal.conf b/programs/wm/qt/catppuccin/catppuccin-latte-teal.conf new file mode 100644 index 0000000..0c824ca --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-teal.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ff179299, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ff179299 +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-latte-yellow.conf b/programs/wm/qt/catppuccin/catppuccin-latte-yellow.conf new file mode 100644 index 0000000..9c88ff4 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-latte-yellow.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ff4c4f69, #ffbcc0cc, #ffacb0be, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffdf8e1d, #ffdce0e8, #ff1e66f5, #ff7287fd, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffdf8e1d +inactive_colors=#ff8c8fa1, #ffeff1f5, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff8c8fa1, #ff4c4f69, #ff8c8fa1, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffccd0da, #ff8c8fa1, #ff8c8fa1, #ff8c8fa1, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffccd0da +disabled_colors=#ff9ca0b0, #ffccd0da, #ffbcc0cc, #ffccd0da, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff4c4f69, #ff9ca0b0, #ffeff1f5, #ffe6e9ef, #ffdce0e8, #ffe6e9ef, #ff9ca0b0, #ff5a7aba, #ff97a1d9, #ffe6e9ef, #ff000000, #ffeff1f5, #ff4c4f69, #809ca0b0, #ffe6e9ef diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-blue.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-blue.conf new file mode 100644 index 0000000..8db3ef7 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-blue.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ff8aadf4, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff8aadf4 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-flamingo.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-flamingo.conf new file mode 100644 index 0000000..a47ca96 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-flamingo.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #fff0c6c6, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #fff0c6c6 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-green.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-green.conf new file mode 100644 index 0000000..ff6b941 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-green.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ffa6da95, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ffa6da95 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-lavender.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-lavender.conf new file mode 100644 index 0000000..39c0702 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-lavender.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ffb7bdf8, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ffb7bdf8 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-maroon.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-maroon.conf new file mode 100644 index 0000000..a977c84 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-maroon.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ffee99a0, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ffee99a0 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-mauve.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-mauve.conf new file mode 100644 index 0000000..a5acc1f --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-mauve.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ffc6a0f6, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ffc6a0f6 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-peach.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-peach.conf new file mode 100644 index 0000000..1307a24 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-peach.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #fff5a97f, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #fff5a97f +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-pink.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-pink.conf new file mode 100644 index 0000000..b6405d6 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-pink.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #fff5bde6, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #fff5bde6 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-red.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-red.conf new file mode 100644 index 0000000..7a05fa0 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-red.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ffed8796, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ffed8796 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-rosewater.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-rosewater.conf new file mode 100644 index 0000000..2172771 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-rosewater.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #fff4dbd6, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #fff4dbd6 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-sapphire.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-sapphire.conf new file mode 100644 index 0000000..25809e5 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-sapphire.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ff7dc4e4, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff7dc4e4 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-sky.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-sky.conf new file mode 100644 index 0000000..a347be1 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-sky.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ff91d7e3, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff91d7e3 +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-teal.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-teal.conf new file mode 100644 index 0000000..2b46986 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-teal.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ff8bd5ca, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff8bd5ca +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-macchiato-yellow.conf b/programs/wm/qt/catppuccin/catppuccin-macchiato-yellow.conf new file mode 100644 index 0000000..7126c9b --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-macchiato-yellow.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcad3f5, #ff494d64, #ff5b6078, #ff363a4f, #ff181926, #ff1e2030, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff181926, #ffeed49f, #ff181926, #ff8aadf4, #ffb7bdf8, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ffeed49f +inactive_colors=#ff8087a2, #ff24273a, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff8087a2, #ffcad3f5, #ff8087a2, #ff24273a, #ff1e2030, #ff181926, #ff363a4f, #ff8087a2, #ff8087a2, #ff8087a2, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff363a4f +disabled_colors=#ff6e738d, #ff363a4f, #ff494d64, #ff363a4f, #ff181926, #ff1e2030, #ff6e738d, #ffcad3f5, #ff6e738d, #ff24273a, #ff1e2030, #ff181926, #ff1e2030, #ff6e738d, #ffaab8d4, #ffcbcee5, #ff1e2030, #ffffffff, #ff24273a, #ffcad3f5, #806e738d, #ff1e2030 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-blue.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-blue.conf new file mode 100644 index 0000000..f727427 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-blue.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #ff89b4fa, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff89b4fa +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-flamingo.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-flamingo.conf new file mode 100644 index 0000000..d4eed20 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-flamingo.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #fff2cdcd, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #fff2cdcd +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-green.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-green.conf new file mode 100644 index 0000000..316da33 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-green.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #ffa6e3a1, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ffa6e3a1 +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-lavender.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-lavender.conf new file mode 100644 index 0000000..1156059 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-lavender.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #ffb4befe, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ffb4befe +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-maroon.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-maroon.conf new file mode 100644 index 0000000..24eb507 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-maroon.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #ffeba0ac, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ffeba0ac +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-mauve.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-mauve.conf new file mode 100644 index 0000000..15b4186 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-mauve.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #ffcba6f7, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ffcba6f7 +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-peach.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-peach.conf new file mode 100644 index 0000000..ce68a00 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-peach.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #fffab387, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #fffab387 +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-pink.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-pink.conf new file mode 100644 index 0000000..9b7e2ca --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-pink.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #fff5c2e7, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #fff5c2e7 +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-red.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-red.conf new file mode 100644 index 0000000..8f80655 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-red.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #fff38ba8, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #fff38ba8 +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-rosewater.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-rosewater.conf new file mode 100644 index 0000000..e3a474e --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-rosewater.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #fff5e0dc, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #fff5e0dc +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-sapphire.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-sapphire.conf new file mode 100644 index 0000000..2bd82f7 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-sapphire.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #ff74c7ec, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff74c7ec +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-sky.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-sky.conf new file mode 100644 index 0000000..0bcb9b9 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-sky.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #ff89dceb, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff89dceb +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-teal.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-teal.conf new file mode 100644 index 0000000..4b4b30a --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-teal.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #ff94e2d5, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff94e2d5 +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/catppuccin/catppuccin-mocha-yellow.conf b/programs/wm/qt/catppuccin/catppuccin-mocha-yellow.conf new file mode 100644 index 0000000..f6df215 --- /dev/null +++ b/programs/wm/qt/catppuccin/catppuccin-mocha-yellow.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors= #ffcdd6f4, #ff45475a, #ff585b70, #ff313244, #ff11111b, #ff181825, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff11111b, #fff9e2af, #ff11111b, #ff89b4fa, #ffb4befe, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #fff9e2af +inactive_colors=#ff7f849c, #ff1e1e2e, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff7f849c, #ffcdd6f4, #ff7f849c, #ff1e1e2e, #ff181825, #ff11111b, #ff313244, #ff7f849c, #ff7f849c, #ff7f849c, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff313244 +disabled_colors=#ff6c7086, #ff313244, #ff45475a, #ff313244, #ff11111b, #ff181825, #ff6c7086, #ffcdd6f4, #ff6c7086, #ff1e1e2e, #ff181825, #ff11111b, #ff181825, #ff6c7086, #ffa9bcdb, #ffc7cceb, #ff181825, #ffffffff, #ff1e1e2e, #ffcdd6f4, #806c7086, #ff181825 diff --git a/programs/wm/qt/qt.nix b/programs/wm/qt/qt.nix new file mode 100644 index 0000000..cf3ec63 --- /dev/null +++ b/programs/wm/qt/qt.nix @@ -0,0 +1,26 @@ +{ lib, pkgs, ... }: +{ + home.packages = with pkgs; [ + kdePackages.qt6ct + ]; + + home.file.".config/qt6ct/colors" = { + source = ./catppuccin; + # copy the scripts directory recursively + recursive = true; + }; + + qt = { + enable = true; + kde.settings = { }; + style = { + name = "qt6ct"; + #package = pkgs.qt6.qtbase; + }; + }; + + home.sessionVariables = { + QT_STYLE_OVERRIDE = "qt6ct"; + QT_QPA_PLATFORMTHEME = "qt6ct"; + }; +} diff --git a/programs/wm/xdg.nix b/programs/wm/xdg.nix index 29db314..eba18ed 100644 --- a/programs/wm/xdg.nix +++ b/programs/wm/xdg.nix @@ -21,11 +21,26 @@ let "audio/*" = [ "mpv.desktop" ]; "video/*" = [ "mpv.dekstop" ]; "image/*" = [ "kitty-icat.desktop" ]; - "application/json" = browser; + #"application/json" = browser; "application/pdf" = [ "kitty-tdf.desktop" ]; "x-scheme-handler/discord" = [ "discordcanary.desktop" ]; "x-scheme-handler/spotify" = [ "spotify.desktop" ]; "x-scheme-handler/tg" = [ "telegramdesktop.desktop" ]; + + "text/csv" = [ "kitty-tabiew.desktop" ]; + "application/csv" = [ "kitty-tabiew.desktop" ]; + "text/tab-separated-values" = [ "kitty-tabiew.desktop" ]; + "application/tsv" = [ "kitty-tabiew.desktop" ]; + "application/json" = [ "kitty-tabiew.desktop" ]; + "application/x-ndjson" = [ "kitty-tabiew.desktop" ]; + "application/vnd.apache.arrow.file" = [ "kitty-tabiew.desktop" ]; + "application/parquet" = [ "kitty-tabiew.desktop" ]; + "application/x-parquet" = [ "kitty-tabiew.desktop" ]; + "application/vnd.sqlite3" = [ "kitty-tabiew.desktop" ]; + "application/x-sqlite3" = [ "kitty-tabiew.desktop" ]; + "application/fwf" = [ "kitty-tabiew.desktop" ]; + "text/fwf" = [ "kitty-tabiew.desktop" ]; + }; in { @@ -62,6 +77,34 @@ in "Office" ]; }; + + kitty-tabiew = { + name = "Tabiew CSV Viewer"; + exec = "kitty -e tw %F --theme catppuccin"; + terminal = false; + type = "Application"; + mimeType = [ + "text/csv" + "application/csv" + "text/tab-separated-values" + "application/tsv" + "application/json" + "application/x-ndjson" + "application/vnd.apache.arrow.file" + "application/parquet" + "application/x-parquet" + "application/vnd.sqlite3" + "application/x-sqlite3" + "application/fwf" + "text/fwf" + ]; + categories = [ + "Utility" + "Viewer" + "Database" + "Development" + ]; + }; }; userDirs = { diff --git a/users/phil/home.nix b/users/phil/home.nix index 0819b66..0f4e66e 100644 --- a/users/phil/home.nix +++ b/users/phil/home.nix @@ -2,7 +2,6 @@ pkgs, lib, inputs, - monitorSetup, ... }: { @@ -17,34 +16,58 @@ inputs.spicetify-nix.homeManagerModules.default ../../programs/wm ../../programs/wm/hyprland - ../../programs/wm/niri + # ../../programs/wm/niri ../../programs/webcam.nix + + ../../programs/wm/common/notifier/mako.nix + ../../programs/wm/common/wallpaper/swww.nix ]; home.packages = with pkgs; [ audacity blender slic3r - okular + kdePackages.okular obsidian element-desktop zapzap - libsForQt5.okular onlyoffice-desktopeditors openscad fstl sqlitebrowser + kubectl + + # PDF Tools + pandoc + texlive.combined.scheme-full + wkhtmltopdf-bin # Games lutris airshipper xonotic + + # GUI Tools + anydesk + ]; catppuccin = { enable = true; flavor = "mocha"; + accent = "red"; + cache.enable = true; + + kvantum = { + enable = false; + }; + + thunderbird = { + accent = "teal"; + enable = true; + profile = "catppuccin-mocha-teal"; + }; }; programs = { @@ -129,5 +152,7 @@ }; }; + home.file.".config/fastfetch/config.jsonc".source = ./config.jsonc; + home.file.".config/tabiew/theme.toml".source = ./theme.toml; } diff --git a/users/phil/nixos.nix b/users/phil/nixos.nix index 8341500..0251206 100644 --- a/users/phil/nixos.nix +++ b/users/phil/nixos.nix @@ -13,7 +13,10 @@ "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCaLHfxVylghDMYR8t4QMUpeRRqXasNABQKBEy9MmhbUXCcWiPbPMSZH8FMHON34rm2OrXP1kY/8jQxqBJDA+SqpFR2AZ4Khk9iVMaq5GHxxpn2amZUjoBa+fB29WaiE1npV5JVJV3O0ylw6GtiCnpneE6fGx2MO1vOY/7zKrUX/OK7WfwkDpeEzZgV/j/md917HrzUVeZwdeTq3WCRO8Gew6R8Xs6FRjSiGuH0dq14D4Ow5Zf1cI1jx+JfD/5vGasw8HXPu1NdxsOE+6D7/22IKqGr+S74/lAoyyD5qqk0s05lw8UY/PXBLJaNLZu9Fwx0BqTHpJEvftpmvd9wUxgR3msx9VXtKNSrqivIbDgeU+3oGzzkrGZODl7FCp4XKGmbrX85Z6lKwEGgv5jez4MLZcmT86bxB7m1wIbqSbVtfhS+GI7yPTA/kLzzFa14Im/+LTj95pb8qs2ALMwTMP1j2f9A6D3RriOFihL+68qn+YbK58KuV1R0f+CQRmlfVbk= phil@web.cyperpunk.de" ]; shell = pkgs.fish; - extraGroups = [ "video" ]; + extraGroups = [ + "video" + "kvm" + ]; }; # Fix underlying System POSIX bugs @@ -29,9 +32,16 @@ programs.fish = { enable = true; + shellAliases = { + ls = "eza"; + la = "eza -la"; + f = "fzf"; + i = "kitty +kitten icat"; + tw = "tw --theme config"; + }; interactiveShellInit = '' - fish_config prompt choose disco starship init fish | source + fzf --fish | source function fish_greeting fastfetch end diff --git a/users/phil/theme.toml b/users/phil/theme.toml new file mode 100644 index 0000000..25b714a --- /dev/null +++ b/users/phil/theme.toml @@ -0,0 +1,140 @@ +# Catppuccin Mocha Theme for Tabiew +# Base colors from Catppuccin Mocha palette + +[table_header] +fg = "#F5E0DC" # Rosewater +bg = "#181825" # Mantle +add_modifier = "BOLD" +sub_modifier = "" + +[[table_headers]] +fg = "#F5C2E7" # Pink +bg = "#181825" # Mantle +add_modifier = "BOLD" +sub_modifier = "" + +[[table_headers]] +fg = "#CBA6F7" # Mauve +bg = "#181825" # Mantle +add_modifier = "BOLD" +sub_modifier = "" + +[[table_headers]] +fg = "#89DCEB" # Sky +bg = "#181825" # Mantle +add_modifier = "BOLD" +sub_modifier = "" + +[[rows]] +fg = "#CDD6F4" # Text +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[[rows]] +fg = "#CDD6F4" # Text +bg = "#181825" # Mantle +add_modifier = "" +sub_modifier = "" + +[highlight] +fg = "#181825" # Mantle +bg = "#F9E2AF" # Yellow +add_modifier = "BOLD" +sub_modifier = "" + +[[table_tags]] +fg = "#181825" # Mantle +bg = "#F38BA8" # Red +add_modifier = "BOLD" +sub_modifier = "" + +[[table_tags]] +fg = "#181825" # Mantle +bg = "#A6E3A1" # Green +add_modifier = "BOLD" +sub_modifier = "" + +[block] +fg = "#FAB387" # Peach +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[block_tag] +fg = "#181825" # Mantle +bg = "#FAB387" # Peach +add_modifier = "BOLD" +sub_modifier = "" + +[text] +fg = "#CDD6F4" # Text +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[subtext] +fg = "#9399B2" # Overlay1 +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[error] +fg = "#CDD6F4" # Text +bg = "#F38BA8" # Red +add_modifier = "BOLD" +sub_modifier = "" + +[[chart]] +fg = "#F38BA8" # Red +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[[chart]] +fg = "#FAB387" # Peach (Orange) +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[[chart]] +fg = "#F9E2AF" # Yellow +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[[chart]] +fg = "#A6E3A1" # Green +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[[chart]] +fg = "#94E2D5" # Teal +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[[chart]] +fg = "#89DCEB" # Sky (Cyan) +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[[chart]] +fg = "#89B4FA" # Blue +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[[chart]] +fg = "#CBA6F7" # Mauve (Purple) +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" + +[[chart]] +fg = "#F5C2E7" # Pink +bg = "#313244" # Surface0 +add_modifier = "" +sub_modifier = "" diff --git a/wallpapers/daemon_layer.png b/wallpapers/daemon_layer.png new file mode 100644 index 0000000..3fe0704 Binary files /dev/null and b/wallpapers/daemon_layer.png differ