-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspacebar.nix
26 lines (26 loc) · 914 Bytes
/
spacebar.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ pkgs, ... }:
{
services.spacebar.enable = false;
# you can restart spacebar with launchctl kickstart -k "gui/${UID}/org.nixos.spacebar"
services.spacebar.package = pkgs.spacebar;
services.spacebar.config = {
debug_output = "on";
# position = "bottom";
position = "top";
clock_format = "%R";
space_icon_strip = " ";
text_font = ''"Menlo:Bold:12.0"'';
icon_font = ''"FontAwesome:Regular:12.0"'';
background_color = "0xff202020";
foreground_color = "0xffa8a8a8";
space_icon_color = "0xff14b1ab";
dnd_icon_color = "0xfffcf7bb";
clock_icon_color = "0xff99d8d0";
power_icon_color = "0xfff69e7b";
battery_icon_color = "0xffffbcbc";
power_icon_strip = " ";
space_icon = "";
clock_icon = "";
dnd_icon = "";
};
}