meow
This commit is contained in:
parent
cca8deb36c
commit
ce96d623a0
3 changed files with 18 additions and 19 deletions
|
|
@ -1,10 +1,11 @@
|
||||||
{ ... }: {
|
{ lib, ... }:
|
||||||
|
{
|
||||||
programs.alacritty.enable = true;
|
programs.alacritty.enable = true;
|
||||||
programs.alacritty.settings = {
|
programs.alacritty.settings = {
|
||||||
window.opacity = 0.8;
|
window.opacity = 0.8;
|
||||||
colors.bright = {
|
colors.bright = {
|
||||||
black = "#444b6a";
|
black = lib.mkDefault "#444b6a";
|
||||||
blue = "#7da6ff";
|
blue = lib.mkDefault "#7da6ff";
|
||||||
cyan = "#0db9d7";
|
cyan = "#0db9d7";
|
||||||
green = "#b9f27c";
|
green = "#b9f27c";
|
||||||
magenta = "#bb9af7";
|
magenta = "#bb9af7";
|
||||||
|
|
|
||||||
|
|
@ -122,6 +122,7 @@
|
||||||
fuzzel
|
fuzzel
|
||||||
seatd
|
seatd
|
||||||
jaq
|
jaq
|
||||||
|
wl-clipboard
|
||||||
];
|
];
|
||||||
# basic configuration of git, please change to your own
|
# basic configuration of git, please change to your own
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
height = 28;
|
height = 28;
|
||||||
output = [ "eDP-1" ];
|
output = [ "eDP-1" ];
|
||||||
margin = "10 20";
|
margin = "10 20";
|
||||||
|
|
||||||
modules-left = [
|
modules-left = [
|
||||||
"niri/workspaces"
|
"niri/workspaces"
|
||||||
"custom/catgirl-status"
|
"custom/catgirl-status"
|
||||||
|
|
@ -20,7 +21,7 @@
|
||||||
"clock"
|
"clock"
|
||||||
];
|
];
|
||||||
|
|
||||||
# Empty but cute custom catgirl status
|
# Catgirl status placeholder
|
||||||
"custom/catgirl-status" = {
|
"custom/catgirl-status" = {
|
||||||
interval = 10;
|
interval = 10;
|
||||||
exec = ''
|
exec = ''
|
||||||
|
|
@ -31,23 +32,11 @@
|
||||||
tooltip = false;
|
tooltip = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Niri workspaces with icons & cute style
|
# Workspaces with numbers instead of icons
|
||||||
"niri/workspaces" = {
|
"niri/workspaces" = {
|
||||||
all-outputs = true;
|
all-outputs = true;
|
||||||
disable-click = false; # allow click to switch workspaces
|
disable-click = false;
|
||||||
format = "{icon}";
|
format = "{name}";
|
||||||
format-icons = {
|
|
||||||
# Named workspaces, you must have matching names in niri config
|
|
||||||
"browser" = "🌐";
|
|
||||||
"discord" = "💬";
|
|
||||||
"chat" = "🐱";
|
|
||||||
# States
|
|
||||||
"focused" = "⭐";
|
|
||||||
"active" = "●";
|
|
||||||
"urgent" = "❗";
|
|
||||||
"empty" = "○";
|
|
||||||
"default" = "•";
|
|
||||||
};
|
|
||||||
disable-markup = false;
|
disable-markup = false;
|
||||||
max-length = 6;
|
max-length = 6;
|
||||||
};
|
};
|
||||||
|
|
@ -82,12 +71,14 @@
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
padding: 5px 15px;
|
padding: 5px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background-color: #3A3A58;
|
background-color: #3A3A58;
|
||||||
color: #FF69B4;
|
color: #FF69B4;
|
||||||
border: 2px solid #FF69B4;
|
border: 2px solid #FF69B4;
|
||||||
box-shadow: 0 0 15px #FF69B4AA;
|
box-shadow: 0 0 15px #FF69B4AA;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
background-color: #FF69B4;
|
background-color: #FF69B4;
|
||||||
color: #3A3A58;
|
color: #3A3A58;
|
||||||
|
|
@ -95,23 +86,29 @@
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 3px 10px;
|
padding: 3px 10px;
|
||||||
transition: background-color 0.2s ease;
|
transition: background-color 0.2s ease;
|
||||||
|
font-family: "Fira Mono", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
background-color: #FFB6C1;
|
background-color: #FFB6C1;
|
||||||
color: #1A1A2E;
|
color: #1A1A2E;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
background-color: #FF69B4;
|
background-color: #FF69B4;
|
||||||
color: #FFF0F5;
|
color: #FFF0F5;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
#clock {
|
#clock {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
color: #FFC0CB;
|
color: #FFC0CB;
|
||||||
}
|
}
|
||||||
|
|
||||||
#battery, #network {
|
#battery, #network {
|
||||||
color: #FFB6C1;
|
color: #FFB6C1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-catgirl-status {
|
#custom-catgirl-status {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
color: #FF69B4;
|
color: #FF69B4;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue