Add bitwarden and add more waybar styling + fixes

This commit is contained in:
2026-01-25 17:08:18 +01:00
parent 5360749f3c
commit ecbc1c1c5b
3 changed files with 55 additions and 6 deletions

View File

@@ -9,6 +9,7 @@
imports = [
./other/fonts.nix
./programs/bitwarden.nix
./programs/kitty.nix
./programs/zsh.nix
./programs/direnv.nix

7
programs/bitwarden.nix Normal file
View File

@@ -0,0 +1,7 @@
{ pkgs, ...}:
{
home.packages = [
pkgs.bitwarden-desktop
];
}

View File

@@ -6,6 +6,22 @@
color: #ffffff;
}
menu {
background-color: #222222;
border-radius: 8px;
border: 1px solid #313244;
}
menu menuitem {
padding: 6px 12px;
color: #cdd6f4;
}
menu menuitem:hover {
background-color: #45475a;
}
/* General bar */
#waybar {
background-color: #222222; /* Default dark gray bar */
@@ -27,12 +43,37 @@
margin: 0 2px;
}
/* Popups */
.popup {
background-color: #333333;
color: #ffffff;
border-radius: 4px;
padding: 4px 6px;
#taskbar button {
background: transparent;
border: none;
box-shadow: none;
}
#taskbar button:hover {
background-color: rgba(180, 190, 254, 0.15);
border-radius: 6px;
}
#taskbar button.active {
background-color: rgba(180, 190, 254, 0.3);
}
/* Workspace buttons */
#workspaces button {
background: transparent;
border: none;
box-shadow: none;
}
/* Hover */
#workspaces button:hover {
background-color: rgba(180, 190, 254, 0.15);
border-radius: 6px;
}
/* Active workspace */
#workspaces button.active {
background-color: rgba(180, 190, 254, 0.35);
}
/* Icons */