10 lines
245 B
Bash
Executable File
10 lines
245 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ -n $1 ]]; then
|
|
sudo /nix/var/nix/profiles/system/specialisation/$1/bin/switch-to-configuration test > /dev/null
|
|
notify-send "Switched to theme $1"
|
|
exit 0
|
|
fi
|
|
|
|
ls /nix/var/nix/profiles/system/specialisation/
|