Compare commits
2 Commits
5360749f3c
...
3f4605743a
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f4605743a | |||
| ecbc1c1c5b |
1
home.nix
1
home.nix
@@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./other/fonts.nix
|
./other/fonts.nix
|
||||||
|
./programs/bitwarden.nix
|
||||||
./programs/kitty.nix
|
./programs/kitty.nix
|
||||||
./programs/zsh.nix
|
./programs/zsh.nix
|
||||||
./programs/direnv.nix
|
./programs/direnv.nix
|
||||||
|
|||||||
7
programs/bitwarden.nix
Normal file
7
programs/bitwarden.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{ pkgs, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = [
|
||||||
|
pkgs.bitwarden-desktop
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -6,6 +6,22 @@
|
|||||||
color: #ffffff;
|
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 */
|
/* General bar */
|
||||||
#waybar {
|
#waybar {
|
||||||
background-color: #222222; /* Default dark gray bar */
|
background-color: #222222; /* Default dark gray bar */
|
||||||
@@ -27,12 +43,37 @@
|
|||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Popups */
|
#taskbar button {
|
||||||
.popup {
|
background: transparent;
|
||||||
background-color: #333333;
|
border: none;
|
||||||
color: #ffffff;
|
box-shadow: none;
|
||||||
border-radius: 4px;
|
}
|
||||||
padding: 4px 6px;
|
|
||||||
|
#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 */
|
/* Icons */
|
||||||
|
|||||||
Reference in New Issue
Block a user