1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-31 07:03:36 +00:00
This commit is contained in:
Rae 5e 2024-12-11 08:56:37 -05:00 committed by GitHub
parent 2511406257
commit 3de1aafbeb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,6 @@ in
{ {
imports = [ imports = [
"${home-manager}/nixos" "${home-manager}/nixos"
# "${plasma-manager}/modules"
]; ];
home-manager.users.rae = { home-manager.users.rae = {
@ -19,10 +18,10 @@ in
".twmrc".source = ../configs/twm; ".twmrc".source = ../configs/twm;
}; };
}; };
xdg.configFile = { xdg.configFile = {
"i3/config".source = ../configs/i3; "i3/config".source = ../configs/i3;
"openbox".source = ../configs/openbox; "openbox".source = ../configs/openbox;
}; };
programs = { programs = {
git = { git = {
@ -78,15 +77,15 @@ in
offset-y = 14; offset-y = 14;
padding = 2; padding = 2;
}; };
"bar/tray" = { "bar/tray" = {
background = color0; background = color0;
foreground = "#000"; foreground = "#000";
bottom = "true"; bottom = "true";
width = "100%"; width = "100%";
height = 32; height = 32;
font-0 = "GohuFont:style=Regular:size=14;3"; font-0 = "GohuFont:style=Regular:size=14;3";
modules-left = "tray"; modules-left = "tray";
}; };
"module/cpu" = { "module/cpu" = {
type = "internal/cpu"; type = "internal/cpu";
@ -106,15 +105,15 @@ in
type = "internal/xwindow"; type = "internal/xwindow";
label-active-font = 0; label-active-font = 0;
}; };
"module/battery" = { "module/battery" = {
type = "internal/battery"; type = "internal/battery";
battery = "BAT0"; battery = "BAT0";
adapter = "ADP1"; adapter = "ADP1";
label-charging = "BAT: %percentage%%++"; label-charging = "BAT: %percentage%%++";
label-discharging = "BAT: %percentage%%"; label-discharging = "BAT: %percentage%%";
label-background = color1; label-background = color1;
label-padding = 2; label-padding = 2;
}; };
"module/date" = { "module/date" = {
type = "internal/date"; type = "internal/date";
date = "%b %d %y"; date = "%b %d %y";
@ -123,10 +122,10 @@ in
label-padding = 2; label-padding = 2;
interval = 5; interval = 5;
}; };
"module/tray" = { "module/tray" = {
type = "internal/tray"; type = "internal/tray";
tray-spacing = "8px"; tray-spacing = "8px";
}; };
}; };
}; };
}; };