Skip to content

Commit

Permalink
home manager
Browse files Browse the repository at this point in the history
  • Loading branch information
user committed May 18, 2024
1 parent 6b60c94 commit 43d2284
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 34 deletions.
4 changes: 3 additions & 1 deletion home-manager/i3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ in
extraConfig = ''
font pango:monospace 14
workspace_layout tabbed
client.focused #4c7899 #2a3843 #ffffff #2e9ef4 #285577
# client.focused #4c7899 #2a3843 #ffffff #2e9ef4 #285577 old (maybe restore)
client.focused #8cb2d9 #6a7883 #ffffff #6ec1f6 #6897b7
client.unfocused #737373 #626262 #cccccc #646464 #737373
'';

config = {
Expand Down
65 changes: 34 additions & 31 deletions home-manager/i3status.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,40 @@
programs.i3status-rust = {
enable = true;

bars.top.blocks = [
{
block = "sound";
}
{
block = "speedtest";
interval = 600;
# format = "$ping.eng(w:4)";
format = " ^icon_ping $ping ^icon_net_down $speed_down ^icon_net_up $speed_up ";
}
bars.top = {
theme = "solarized-light";
# icons = "awesome6";
blocks = [
{
block = "sound";
}
{
block = "speedtest";
interval = 600;
format = " ^icon_ping $ping ^icon_net_down $speed_down ^icon_net_up $speed_up ";
}

{
block = "disk_space";
}
{
block = "battery";
}
{
block = "temperature";
}
{
block = "amd_gpu";
}
{
block = "cpu";
}
{
block = "time";
interval = 1;
format = " $timestamp.datetime(f:'%Y.%m.%d %H:%M:%S') ";
}
];
{
block = "disk_space";
}
{
block = "battery";
}
{
block = "temperature";
}
{
block = "amd_gpu";
}
{
block = "cpu";
}
{
block = "time";
interval = 1;
format = " $timestamp.datetime(f:'%Y.%m.%d %H:%M:%S') ";
}
];
};
};
}
2 changes: 0 additions & 2 deletions home-manager/misc.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ in

speedtest-cli

monero-gui

kate
];
}

0 comments on commit 43d2284

Please sign in to comment.