Compare commits
No commits in common. "897594e91c6f4e46bb34092975ca1183f006e0b8" and "3a1889a1559a3f72b0498d55e1d2842f4b862e6f" have entirely different histories.
897594e91c
...
3a1889a155
|
@ -68,7 +68,7 @@
|
||||||
windowManager.i3 = {
|
windowManager.i3 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
i3status-rust
|
i3status
|
||||||
rofi
|
rofi
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -40,14 +40,13 @@ workspace $ws10 output HDMI-1
|
||||||
# Assign gaps to specific workspaces.
|
# Assign gaps to specific workspaces.
|
||||||
workspace $ws2 gaps inner 10
|
workspace $ws2 gaps inner 10
|
||||||
workspace $ws3 gaps inner 10
|
workspace $ws3 gaps inner 10
|
||||||
workspace $ws4 gaps inner 10
|
|
||||||
|
|
||||||
# Configuration for i3bar.
|
# Configuration for i3bar.
|
||||||
bar {
|
bar {
|
||||||
output primary # Only output to the primary display.
|
output primary # Only output to the primary display.
|
||||||
position bottom # Position at the bottom of the screen.
|
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.
|
tray_output primary # Show tray icons on the primary display.
|
||||||
}
|
}
|
||||||
|
|
||||||
# Assign clients to specific workspaces.
|
# Assign clients to specific workspaces.
|
||||||
|
|
|
@ -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"
|
|
|
@ -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"
|
Loading…
Reference in New Issue