diff --git a/apps/btop/home.nix b/apps/btop/home.nix new file mode 100644 index 0000000..8cb489f --- /dev/null +++ b/apps/btop/home.nix @@ -0,0 +1,8 @@ +{ + programs.btop = { + enable = true; + settings = { + vim_keys = true; + }; + }; +} diff --git a/apps/ghostty/home.nix b/apps/ghostty/home.nix index 7181b71..dd613ff 100644 --- a/apps/ghostty/home.nix +++ b/apps/ghostty/home.nix @@ -7,7 +7,6 @@ else pkgs.ghostty; enableFishIntegration = true; settings = { - config-file-reload = true; window-padding-x = 15; window-padding-y = 15; window-padding-balance = true; diff --git a/apps/waybar/home.nix b/apps/waybar/home.nix index f43cf2e..eb8d9b8 100644 --- a/apps/waybar/home.nix +++ b/apps/waybar/home.nix @@ -54,20 +54,20 @@ }; "custom/omarchy" = { - format = "\ue900"; + format = ""; on-click = "omarchy-menu"; on-click-right = "xdg-terminal-exec"; tooltip-format = "Omarchy Menu\n\nSuper + Alt + Space"; }; - "custom/update" = { - format = ""; - exec = "omarchy-update-available"; - on-click = "omarchy-launch-floating-terminal-with-presentation omarchy-update"; - tooltip-format = "Omarchy update available"; - signal = 7; - interval = 21600; - }; + # "custom/update" = { + # format = ""; + # exec = "omarchy-update-available"; + # on-click = "omarchy-launch-floating-terminal-with-presentation omarchy-update"; + # tooltip-format = "Omarchy update available"; + # signal = 7; + # interval = 21600; + # }; "cpu" = { interval = 5; diff --git a/modules/home/apps-optional.nix b/modules/home/apps-optional.nix index 54b12c9..36b244f 100644 --- a/modules/home/apps-optional.nix +++ b/modules/home/apps-optional.nix @@ -1,5 +1,6 @@ { imports = [ ../../apps/jellyfin-tui/home.nix + ../../apps/btop/home.nix ]; }