mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-07 15:23:59 +01:00
18 lines
508 B
Nix
18 lines
508 B
Nix
{ pkgs }:
|
|
|
|
pkgs.writeShellScriptBin "theme-selector" ''
|
|
# Get user selection for new theme from base16-themes file
|
|
chosen=$(cat $HOME/.base16-themes | ${pkgs.rofi-wayland}/bin/rofi -dmenu)
|
|
|
|
# Exit if none chosen.
|
|
[ -z "$chosen" ] && exit
|
|
|
|
if [ -n "$1" ]; then
|
|
themechange "$chosen"
|
|
else
|
|
${pkgs.libnotify}/bin/notify-send "$chosen is building please wait" &
|
|
themechange "$chosen"
|
|
${pkgs.libnotify}/bin/notify-send "Theme: $chosen has been applied." &
|
|
fi
|
|
''
|