aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/desktop/sway/i3status.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/desktop/sway/i3status.nix')
-rw-r--r--users/fcuny/desktop/sway/i3status.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/users/fcuny/desktop/sway/i3status.nix b/users/fcuny/desktop/sway/i3status.nix
deleted file mode 100644
index 9eb5733..0000000
--- a/users/fcuny/desktop/sway/i3status.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ pkgs, ... }:
-
-{
- programs.i3status-rust = {
- enable = true;
- bars.default = {
- settings.theme.name = "plain";
- icons = "awesome5";
- blocks = [
- {
- block = "net";
- format = "{ssid} {signal_strength} {ip}";
- interval = 5;
- }
- {
- block = "battery";
- interval = 30;
- format = "{percentage} {time}";
- }
- {
- block = "backlight";
- }
- {
- block = "sound";
- on_click = "${pkgs.pavucontrol}/bin/pavucontrol";
- }
- {
- block = "time";
- interval = 1;
- format = "%b-%d %H:%M:%S";
- icons_format = "";
- }
- ];
- };
- };
-}