zaneyos/config/scripts/themechange.nix
2024-02-06 19:08:34 -06:00

17 lines
447 B
Nix

{ pkgs, ... }:
let
inherit (import ../../options.nix) flakeDir;
in
pkgs.writeShellScriptBin "themechange" ''
if [[ ! $@ ]];then
echo "No Theme Given"
else
replacement="$1"
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
''