This commit is contained in:
Vince 2022-01-29 18:36:27 +08:00
parent 81bbd62a3d
commit f4f1d0acde
2 changed files with 55 additions and 36 deletions

View File

@ -192,59 +192,77 @@ Usage: `./tweaks.sh [OPTIONS...]`
<details> <summary> Options </summary> <details> <summary> Options </summary>
```bash ```bash
-f, --firefox [default|monterey|alt] -d, --dest DIR
Install 'WhiteSur|Monterey|Monterey-Alt' theme for Firefox and connect it to the current Firefox profiles. Default is WhiteSur Set destination directory. Default is '/home/vince/.themes'
-e, --edit-firefox -n, --name NAME
Edit 'WhiteSur' theme for Firefox settings and also connect the theme to the current Firefox profiles. Set theme name. Default is 'WhiteSur'
-F, --flatpak -o, --opacity [normal|solid]
Connect 'WhiteSur' theme to Flatpak. Set theme opacity variants. Repeatable. Default is all variants
-s, --snap -c, --color [light|dark]
Connect 'WhiteSur' theme the currently installed snap apps. Set theme color variants. Repeatable. Default is all variants
-g, --gdm -a, --alt [normal|alt|all]
Install 'WhiteSur' theme for GDM. Requires to run this shell as root Set window control buttons variant. Repeatable. Default is 'normal'
-d, --dash-to-dock -t, --theme [default|blue|purple|pink|red|orange|yellow|green|grey|all]
Install 'WhiteSur' theme for Dash to Dock and connect it to the current Dash to Dock installation(s). Set theme accent color. Repeatable. Default is BigSur-like theme
-N, --no-darken -p, --panel-opacity [default|30|45|60|75]
Don't darken 'WhiteSur' GDM theme background image. Set panel transparency. Default is 15%
-n, --no-blur -P, --panel-size [default|smaller|bigger]
Don't blur 'WhiteSur' GDM theme background image. Set Gnome shell panel height size. Default is 32px
-b, --background [default|blank|IMAGE_PATH] -s, --size [default|180|220|240|260|280]
Set 'WhiteSur' GDM theme background image. Default is BigSur-like wallpaper Set Nautilus sidebar minimum width. Default is 200px
-o, --opacity [normal|solid] -i, --icon [standard|simple|gnome|ubuntu|tux|arch|manjaro|fedora|debian|void|opensuse|popos|mxlinux|zorin]
Set 'WhiteSur' GDM theme opacity variants. Default is 'normal' Set 'Activities' icon. Default is 'standard'
-c, --color [light|dark] -b, --background [default|blank|IMAGE_PATH]
Set 'WhiteSur' GDM and Dash to Dock theme color variants. Default is 'light' Set gnome-shell background image. Default is BigSur-like wallpaper
-t, --theme [default|blue|purple|pink|red|orange|yellow|green|grey] -m, --monterey
Set 'WhiteSur' GDM theme accent color. Default is BigSur-like theme Set to MacOS Monterey style.
-p, --panel-opacity [default|30|45|60|75] -N, --nautilus-style [stable|normal|mojave|glassy]
Set 'WhiteSur' GDM (GNOME Shell) theme panel transparency. Default is 15% Set Nautilus style. Default is BigSur-like style (stabled sidebar)
-P, --panel-size [default|smaller|bigger] -HD, --highdefinition
Set 'WhiteSur' Gnome shell panel height size. Default is 32px Set to High Definition size. Default is laptop size
-i, --icon [standard|simple|gnome|ubuntu|arch|manjaro|fedora|debian|void|opensuse|popos|mxlinux|zorin] --normal, --normalshowapps
Set 'WhiteSur' GDM (GNOME Shell) 'Activities' icon. Default is 'standard' Set gnome-shell show apps button style to normal. Default is bigsur
-r, --remove, --revert --round, --roundedmaxwindow
Revert to the original themes, do the opposite things of install and connect. Set maximized window to rounded. Default is square
--silent-mode --right, --rightplacement
Meant for developers: ignore any confirm prompt and params become more strict. Set Nautilus titlebutton placement to right. Default is left
-h, --help --black, --blackfont
Show this help. Set panel font color to black. Default is white
--darker, --darkercolor
Install darker 'WhiteSur' dark themes.
--nord, --nordcolor
Install 'WhiteSur' Nord ColorScheme themes.
--dialog, --interactive
Run this installer interactively, with dialogs.
--silent-mode
Meant for developers: ignore any confirm prompt and params become more strict.
-r, --remove, -u, --uninstall
Remove all installed WhiteSur themes.
-h, --help
Show this help.
``` ```
</details> </details>

View File

@ -42,6 +42,7 @@ usage() {
helpify "--right, --rightplacement" "" "Set Nautilus titlebutton placement to right" "Default is left" helpify "--right, --rightplacement" "" "Set Nautilus titlebutton placement to right" "Default is left"
helpify "--black, --blackfont" "" "Set panel font color to black" "Default is white" helpify "--black, --blackfont" "" "Set panel font color to black" "Default is white"
helpify "--darker, --darkercolor" "" "Install darker '${THEME_NAME}' dark themes" "" helpify "--darker, --darkercolor" "" "Install darker '${THEME_NAME}' dark themes" ""
helpify "--nord, --nordcolor" "" "Install '${THEME_NAME}' Nord ColorScheme themes" ""
helpify "--dialog, --interactive" "" "Run this installer interactively, with dialogs" "" helpify "--dialog, --interactive" "" "Run this installer interactively, with dialogs" ""
helpify "--silent-mode" "" "Meant for developers: ignore any confirm prompt and params become more strict" "" helpify "--silent-mode" "" "Meant for developers: ignore any confirm prompt and params become more strict" ""
helpify "-r, --remove, -u, --uninstall" "" "Remove all installed ${THEME_NAME} themes" "" helpify "-r, --remove, -u, --uninstall" "" "Remove all installed ${THEME_NAME} themes" ""