Added: Catpuccin

This commit is contained in:
DerGrumpf 2025-04-08 13:18:34 +02:00
parent d1e22cca12
commit 23bbfad136
5 changed files with 40 additions and 13 deletions

View File

@ -186,6 +186,8 @@ in
"${super}, P, pseudo, " # dwindle "${super}, P, pseudo, " # dwindle
"${super}, J, togglesplit, "# dwindle "${super}, J, togglesplit, "# dwindle
"${super}, O, exec, obsidian" "${super}, O, exec, obsidian"
"${super}, F, exec, firefox"
"${super}, G, exec, geary"
# Move focus with mainMod + arrow keys # Move focus with mainMod + arrow keys
"${super}, left, movefocus, l" "${super}, left, movefocus, l"

View File

@ -0,0 +1,26 @@
@define-color rosewater #f5e0dc;
@define-color flamingo #f2cdcd;
@define-color pink #f5c2e7;
@define-color mauve #cba6f7;
@define-color red #f38ba8;
@define-color maroon #eba0ac;
@define-color peach #fab387;
@define-color yellow #f9e2af;
@define-color green #a6e3a1;
@define-color teal #94e2d5;
@define-color sky #89dceb;
@define-color sapphire #74c7ec;
@define-color blue #89b4fa;
@define-color lavender #b4befe;
@define-color text #cdd6f4;
@define-color subtext1 #bac2de;
@define-color subtext0 #a6adc8;
@define-color overlay2 #9399b2;
@define-color overlay1 #7f849c;
@define-color overlay0 #6c7086;
@define-color surface2 #585b70;
@define-color surface1 #45475a;
@define-color surface0 #313244;
@define-color base #1e1e2e;
@define-color mantle #181825;
@define-color crust #11111b;

View File

@ -1,8 +1,11 @@
@import "mocha.css";
* { * {
font-family: "JetBrains Mono Nerd Font"; font-family: "JetBrains Mono Nerd Font";
/*font-family: "JetBrainsMono Nerd Font";*/ /*font-family: "JetBrainsMono Nerd Font";*/
font-weight: bold; font-weight: bold;
font-size: 15px; font-size: 15px;
color: @text;
} }
#custom-notification { #custom-notification {
@ -13,12 +16,8 @@
} }
window#waybar { window#waybar {
background: #092047; background-color: shade(@base, 0.9);
/* border-radius: 15px; */ border: 2px solid alpha(@crust, 0.3);
/* border: 2px solid #124323; */
/* border: 0px solid #A1BDCE; */
border: 3px solid rgba(172, 97, 185, 1);
border-radius: 10px;
} }
tooltip { tooltip {

View File

@ -37,16 +37,16 @@
networking = { networking = {
hostName = "nix-desktop"; hostName = "nix-desktop";
networkmanager.enable = true; networkmanager.enable = true;
useDHCP = false; #useDHCP = true;
dhcpcd.enable = false; #dhcpcd.enable = true;
interfaces = { /*interfaces = {
eno1.ipv4.addresses = [{ eno1.ipv4.addresses = [{
address = "192.168.2.40"; address = "192.168.2.40";
prefixLength = 24; prefixLength = 24;
}]; }];
}; };*/
defaultGateway = { /*defaultGateway = {
address = "192.168.2.1"; address = "192.168.2.1";
interface = "eno1"; interface = "eno1";
}; };
@ -55,7 +55,7 @@
"192.168.2.50" "192.168.2.50"
"1.1.1.1" "1.1.1.1"
"8.8.8.8" "8.8.8.8"
]; ];*/
}; };
hardware.graphics.enable = true; hardware.graphics.enable = true;

View File

@ -1,4 +1,4 @@
{ pkgs, ...}: { pkgs, ...}:
{ {
programs.geary.enable = true; programs.thunderbird.enable = true;
} }