diff --git a/modules/home-manager/sway.nix b/modules/home-manager/sway.nix index bffe6af..1c8aefb 100644 --- a/modules/home-manager/sway.nix +++ b/modules/home-manager/sway.nix @@ -26,9 +26,9 @@ text = '' #!${pkgs.bash}/bin/bash if [ "$(gsettings get ${schema} ${key})" == "true" ]; then - echo {"text": "󰌌", "tooltip": "enabled", "percentage": 100 } + echo '{ "text": "󰌌", "tooltip": "enabled", "percentage": 100 }' else - echo {"text": "󰌐", "tooltip": "disabled", "percentage": 0 } + echo '{ "text": "󰌐", "tooltip": "disabled", "percentage": 0 }' fi ''; };