aboutsummaryrefslogtreecommitdiffstats
path: root/home-manger/mako
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-11 12:22:46 +0100
committerene <ene@sils.li>2023-02-11 12:22:46 +0100
commit16b74bfaab48fa8e890881eead078b09dcefbcf8 (patch)
tree48dbe0f014d22246cc6594db655866929e5d3cde /home-manger/mako
parentFix: Import the configurations (diff)
downloadnixos-config-16b74bfaab48fa8e890881eead078b09dcefbcf8.zip
Fix: Remove typo from home-manager directory name
Diffstat (limited to 'home-manger/mako')
-rw-r--r--home-manger/mako/default.nix46
1 files changed, 0 insertions, 46 deletions
diff --git a/home-manger/mako/default.nix b/home-manger/mako/default.nix
deleted file mode 100644
index 30a11930..00000000
--- a/home-manger/mako/default.nix
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- config,
- pkgs,
- ...
-}: {
- home-manager.programs.mako = {
- enable = true;
- backgroudColor = "#2e3440";
- borderColor = "#88c0d0";
- borderRadius = 25;
- borderSize = 2;
- defaultTimeout = 5000;
- font = "Source Code Pro 10";
- width = 500;
- height = 500;
- icons = true;
- ignore-timeout = true;
- layer = "overlay";
- markup = true; # TODO
- maxIconSize = 64;
- sort = "-time";
- extraConfig = ''
- [urgency=low]
- border-color=#cccccc
-
- [urgency=normal]
- border-color=#d08770
-
- [urgency=high]
- border-size=3
- border-color=#bf616a
- default-timeout=0
-
- [urgency=critical]
- border-size=4
- border-color=#bf616a
- default-timeout=0
-
- [category=mpd]
- default-timeout=2000
- group-by=category
- '';
- };
-}
-# vim: ts=2
-