Added
This commit is contained in:
37
flake.lock
generated
37
flake.lock
generated
@@ -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": {
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
@@ -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
|
||||
'';
|
||||
|
||||
}
|
||||
|
||||
@@ -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
|
||||
'';
|
||||
*/
|
||||
};
|
||||
|
||||
|
||||
@@ -20,5 +20,6 @@
|
||||
HandleHibernateKey=ignore
|
||||
'';
|
||||
|
||||
flatpak.enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
programs.thunderbird.enable = true;
|
||||
}
|
||||
|
||||
10
overlays/default.nix
Normal file
10
overlays/default.nix
Normal file
@@ -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
|
||||
)
|
||||
52
overlays/tabiew.nix
Normal file
52
overlays/tabiew.nix
Normal file
@@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -79,5 +79,8 @@
|
||||
# Avante
|
||||
curl
|
||||
cargo
|
||||
clang
|
||||
zig
|
||||
rustc
|
||||
];
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
home.file = {
|
||||
"Pictures/Wallpapers" = {
|
||||
source = ../../wallpapers;
|
||||
source = ../../../../wallpapers;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
21
programs/wm/gtk/gtk.nix
Normal file
21
programs/wm/gtk/gtk.nix
Normal file
@@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
...
|
||||
}:
|
||||
{
|
||||
# imports = [ ./niri-switcher.nix ];
|
||||
imports = [ ./swaylock.nix ];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
niri
|
||||
|
||||
35
programs/wm/niri/swaylock.nix
Normal file
35
programs/wm/niri/swaylock.nix
Normal file
@@ -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";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-blue.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-blue.conf
Normal file
@@ -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
|
||||
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-green.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-green.conf
Normal file
@@ -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
|
||||
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-maroon.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-maroon.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-mauve.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-mauve.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-peach.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-peach.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-pink.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-pink.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-red.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-red.conf
Normal file
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-sky.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-sky.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-teal.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-teal.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-frappe-yellow.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-frappe-yellow.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-blue.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-blue.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-flamingo.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-flamingo.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-green.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-green.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-lavender.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-lavender.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-maroon.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-maroon.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-mauve.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-mauve.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-peach.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-peach.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-pink.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-pink.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-red.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-red.conf
Normal file
@@ -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
|
||||
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-sapphire.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-sapphire.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-sky.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-sky.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-teal.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-teal.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-latte-yellow.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-latte-yellow.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-macchiato-blue.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-macchiato-blue.conf
Normal file
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-macchiato-pink.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-macchiato-pink.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-macchiato-red.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-macchiato-red.conf
Normal file
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-macchiato-sky.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-macchiato-sky.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-macchiato-teal.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-macchiato-teal.conf
Normal file
@@ -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
|
||||
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-blue.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-blue.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-flamingo.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-flamingo.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-green.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-green.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-lavender.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-lavender.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-maroon.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-maroon.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-mauve.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-mauve.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-peach.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-peach.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-pink.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-pink.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-red.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-red.conf
Normal file
@@ -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
|
||||
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-sapphire.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-sapphire.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-sky.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-sky.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-teal.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-teal.conf
Normal file
@@ -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
|
||||
4
programs/wm/qt/catppuccin/catppuccin-mocha-yellow.conf
Normal file
4
programs/wm/qt/catppuccin/catppuccin-mocha-yellow.conf
Normal file
@@ -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
|
||||
26
programs/wm/qt/qt.nix
Normal file
26
programs/wm/qt/qt.nix
Normal file
@@ -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";
|
||||
};
|
||||
}
|
||||
@@ -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 = {
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
140
users/phil/theme.toml
Normal file
140
users/phil/theme.toml
Normal file
@@ -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 = ""
|
||||
BIN
wallpapers/daemon_layer.png
Normal file
BIN
wallpapers/daemon_layer.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 737 KiB |
Reference in New Issue
Block a user