switch from xmonad to i3

This commit is contained in:
Ingolf Wagner 2022-10-12 16:58:38 +02:00
commit dc6e79e08c
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
6 changed files with 323 additions and 6 deletions
nixos/library

View file

@ -0,0 +1,42 @@
{
solarized = {
dark.hex = {
base03 = "#002b36";
base02 = "#073642";
base01 = "#586e75";
base00 = "#657b83";
base0 = "#839496";
base1 = "#93a1a1";
base2 = "#eee8d5";
base3 = "#fdf6e3";
yellow = "#b58900";
orange = "#cb4b16";
red = "#dc322f";
magenta = "#d33682";
violet = "#6c71c4";
blue = "#268bd2";
cyan = "#2aa198";
green = "#859900";
};
light.hex = {
base03 = "#fdf6e3";
base02 = "#eee8d5";
base01 = "#93a1a1";
base00 = "#839496";
base0 = "#657b83";
base1 = "#586e75";
base2 = "#073642";
base3 = "#002b36";
yellow = "#b58900";
orange = "#cb4b16";
red = "#dc322f";
magenta = "#d33682";
violet = "#6c71c4";
blue = "#268bd2";
cyan = "#2aa198";
green = "#859900";
};
};
}