1
Fork 0

Compare commits

..

No commits in common. "897594e91c6f4e46bb34092975ca1183f006e0b8" and "3a1889a1559a3f72b0498d55e1d2842f4b862e6f" have entirely different histories.

4 changed files with 23 additions and 17 deletions

View File

@ -68,7 +68,7 @@
windowManager.i3 = {
enable = true;
extraPackages = with pkgs; [
i3status-rust
i3status
rofi
];
};

View File

@ -40,13 +40,12 @@ workspace $ws10 output HDMI-1
# Assign gaps to specific workspaces.
workspace $ws2 gaps inner 10
workspace $ws3 gaps inner 10
workspace $ws4 gaps inner 10
# Configuration for i3bar.
bar {
output primary # Only output to the primary display.
position bottom # Position at the bottom of the screen.
status_command i3status-rs # Use i3status-rust for the status contents.
status_command i3status # Use i3status for the status contents.
tray_output primary # Show tray icons on the primary display.
}

View File

@ -1,11 +0,0 @@
[[block]]
block = "time"
format = "$timestamp.datetime(f:'%H:%M')"
interval = 5
timezone = "US/Central"
[[block]]
block = "time"
format = "$timestamp.datetime(f:'%H:%M')"
interval = 5
timezone = "Europe/Brussels"

18
.config/i3status/config Normal file
View File

@ -0,0 +1,18 @@
general {
colors = true
interval = 5
output_format = "i3bar"
}
tztime eu_brussels {
format = "%H:%M"
timezone = "Europe/Brussels"
}
tztime us_central {
format = "%H:%M"
timezone = "US/Central"
}
order += "tztime us_central"
order += "tztime eu_brussels"