home: replace dunst with mako
This commit is contained in:
parent
8a44463847
commit
c42edd8b4d
5 changed files with 22 additions and 37 deletions
|
@ -7,13 +7,13 @@ name | description
|
||||||
`bat` | cat replacement
|
`bat` | cat replacement
|
||||||
`direnv` | a shell extension, that loads environment variables in certain directories
|
`direnv` | a shell extension, that loads environment variables in certain directories
|
||||||
`default` | used for commonly shared modules, for multiple home-manager configs
|
`default` | used for commonly shared modules, for multiple home-manager configs
|
||||||
`dunst` | notification daemon
|
|
||||||
`git` | version control system
|
`git` | version control system
|
||||||
`gtk` | themes
|
`gtk` | themes
|
||||||
`helix` | modal text editor
|
`helix` | modal text editor
|
||||||
`lazygit` | terminal based git command system
|
`lazygit` | terminal based git command system
|
||||||
`lf` | terminal based file manager
|
`lf` | terminal based file manager
|
||||||
`librewolf` | a hardened firefox fork, and my browser of choice
|
`librewolf` | a hardened firefox fork, and my browser of choice
|
||||||
|
`mako` | a lightweight wayland notification daemon
|
||||||
`neofetch` | fetch program
|
`neofetch` | fetch program
|
||||||
`nushell` | my shell of choice
|
`nushell` | my shell of choice
|
||||||
`rofi` | application launcher
|
`rofi` | application launcher
|
||||||
|
|
|
@ -53,8 +53,8 @@
|
||||||
Host pihole
|
Host pihole
|
||||||
Hostname 192.168.1.221
|
Hostname 192.168.1.221
|
||||||
User root
|
User root
|
||||||
Host pve1
|
Host pve
|
||||||
Hostname 192.168.1.36
|
Hostname 192.168.1.37
|
||||||
User root
|
User root
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
{...}: {
|
|
||||||
global = {
|
|
||||||
frame_color = "#f5c2e7";
|
|
||||||
frame_width = "4";
|
|
||||||
separator_color = "frame";
|
|
||||||
height = "300";
|
|
||||||
width = "300";
|
|
||||||
min_icon_size = 32;
|
|
||||||
max_icon_size = 128;
|
|
||||||
origin = "top-right";
|
|
||||||
offset = "14x61";
|
|
||||||
font = "jost 10";
|
|
||||||
};
|
|
||||||
urgency_low = {
|
|
||||||
background = "#1E1E2E";
|
|
||||||
foreground = "#CDD6F4";
|
|
||||||
};
|
|
||||||
urgency_normal = {
|
|
||||||
background = "#1E1E2E";
|
|
||||||
foreground = "#CDD6F4";
|
|
||||||
};
|
|
||||||
urgency_critical = {
|
|
||||||
background = "#1E1E2E";
|
|
||||||
foreground = "#CDD6F4";
|
|
||||||
frame_color = "#FAB387";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{...}: {
|
|
||||||
services.dunst = {
|
|
||||||
enable = true;
|
|
||||||
waylandDisplay = "DP-2";
|
|
||||||
settings = ./config.nix;
|
|
||||||
};
|
|
||||||
}
|
|
19
home/mako/default.nix
Normal file
19
home/mako/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{...}: {
|
||||||
|
services.mako = {
|
||||||
|
enable = true;
|
||||||
|
icons = true;
|
||||||
|
maxIconSize = 64;
|
||||||
|
maxVisible = 5;
|
||||||
|
defaultTimeout = 5000;
|
||||||
|
ignoreTimeout = true;
|
||||||
|
anchor = "top-right";
|
||||||
|
output = "DP-3";
|
||||||
|
font = "jost 10";
|
||||||
|
padding = "10";
|
||||||
|
margin = "18,22,0";
|
||||||
|
backgroundColor = "#1e1e2e";
|
||||||
|
textColor = "#cdd6f4";
|
||||||
|
borderColor = "#f5c2e7";
|
||||||
|
progressColor = "over #313244";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue