zaneyos/config/scripts/themechange.nix

17 lines
447 B
Nix
Raw Normal View History

2024-02-07 02:08:34 +01:00
{ pkgs, ... }:
2024-01-17 09:17:12 +01:00
2024-02-07 02:08:34 +01:00
let
inherit (import ../../options.nix) flakeDir;
in
2024-01-17 09:17:12 +01:00
pkgs.writeShellScriptBin "themechange" ''
if [[ ! $@ ]];then
echo "No Theme Given"
else
replacement="$1"
2024-02-07 02:08:34 +01:00
sed -i "/^\s*theme[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$replacement\"/" ${flakeDir}/options.nix
pkexec nixos-rebuild switch --flake ${flakeDir}
hyprctl dispatch -- exec swaync-client -R
hyprctl dispatch -- exec swaync-client -rs
fi
2024-01-17 09:17:12 +01:00
''