Skip to content

Commit

Permalink
Merge pull request #238 from Chebuya/master
Browse files Browse the repository at this point in the history
Added NixOS icon
  • Loading branch information
vinceliuice authored Aug 3, 2023
2 parents 7396724 + 1d4999f commit 39f19f6
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 2 deletions.
8 changes: 6 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ OPACITY_VARIANTS=('' '-solid')
ALT_VARIANTS=('' '-alt')
SMALL_VARIANTS=('' '-small')
THEME_VARIANTS=('' '-blue' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-grey')
ICON_VARIANTS=('' '-normal' '-gnome' '-ubuntu' '-arch' '-manjaro' '-fedora' '-debian' '-void')
ICON_VARIANTS=('' '-normal' '-gnome' '-ubuntu' '-arch' '-manjaro' '-fedora' '-debian' '-void' '-nixos')

# COLORS
CDEF=" \033[0m" # default color
Expand Down Expand Up @@ -65,7 +65,7 @@ usage() {
printf " %-25s%s\n" "-a, --alt VARIANTS" "Specify theme titilebutton variant(s) [standard|alt] (Default: All variants)"
printf " %-25s%s\n" "-s, --small VARIANTS" "Specify theme titilebutton size variant(s) [standard|small] (Default: All variants)"
printf " %-25s%s\n" "-t, --theme VARIANTS" "Specify primary theme color [blue|purple|pink|red|orange|yellow|green|grey|all] (Default: MacOS blue)"
printf " %-25s%s\n" "-i, --icon VARIANTS" "Specify activities icon variant(s) for gnome-shell [standard|normal|gnome|ubuntu|arch|manjaro|fedora|debian|void] (Default: standard variant)"
printf " %-25s%s\n" "-i, --icon VARIANTS" "Specify activities icon variant(s) for gnome-shell [standard|normal|gnome|ubuntu|arch|manjaro|fedora|debian|void|nixos] (Default: standard variant)"
printf " %-25s%s\n" "-g, --gdm" "Install GDM theme, this option need root user authority! please run this with sudo"
printf " %-25s%s\n" "-r, --revert" "revert GDM theme, this option need root user authority! please run this with sudo"
printf " %-25s%s\n" "-h, --help" "Show this help"
Expand Down Expand Up @@ -563,6 +563,10 @@ while [[ $# -gt 0 ]]; do
icons+=("${ICON_VARIANTS[8]}")
shift
;;
nixos)
icons+=("${ICON_VARIANTS[9]}")
shift
;;
-*|--*)
break
;;
Expand Down
52 changes: 52 additions & 0 deletions src/assets/gnome-shell/activities-Dark/activities-nixos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions src/assets/gnome-shell/activities-Light/activities-nixos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 39f19f6

Please sign in to comment.