forked from Shinonome/dots-hyprland
Cleanbuild for gradience-git (#428)
This commit is contained in:
+12
@@ -113,6 +113,18 @@ case $SKIP_PYMYC_AUR in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# https://github.com/end-4/dots-hyprland/issues/428#issuecomment-2081701482
|
||||||
|
case $SKIP_GRADIENCE_AUR in
|
||||||
|
true) sleep 0;;
|
||||||
|
*)
|
||||||
|
if $ask;then
|
||||||
|
v $AUR_HELPER -S --answerclean=a gradience-git
|
||||||
|
else
|
||||||
|
v $AUR_HELPER -S --answerclean=a --noconfirm gradience-git
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
## Optional dependencies
|
## Optional dependencies
|
||||||
if pacman -Qs ^plasma-browser-integration$ ;then SKIP_PLASMAINTG=true;fi
|
if pacman -Qs ^plasma-browser-integration$ ;then SKIP_PLASMAINTG=true;fi
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
### Ones which need cleanbuild (see install.sh):
|
### Ones which need cleanbuild (see install.sh):
|
||||||
# hyprland-git
|
# hyprland-git
|
||||||
# python-materialyoucolor-git
|
# python-materialyoucolor-git
|
||||||
|
# gradience-git
|
||||||
|
|
||||||
### Basic
|
### Basic
|
||||||
coreutils cliphist cmake curl fuzzel rsync wget ripgrep gojq npm meson typescript gjs dart-sass axel
|
coreutils cliphist cmake curl fuzzel rsync wget ripgrep gojq npm meson typescript gjs dart-sass axel
|
||||||
@@ -32,7 +33,7 @@ polkit-gnome gnome-keyring gnome-control-center blueberry networkmanager brightn
|
|||||||
python-pywayland python-psutil hypridle-git hyprlock-git wlogout wl-clipboard hyprpicker-git anyrun-git
|
python-pywayland python-psutil hypridle-git hyprlock-git wlogout wl-clipboard hyprpicker-git anyrun-git
|
||||||
|
|
||||||
### Fonts and Themes
|
### Fonts and Themes
|
||||||
adw-gtk3-git qt5ct qt5-wayland gradience-git fontconfig ttf-readex-pro ttf-jetbrains-mono-nerd ttf-material-symbols-variable-git ttf-space-mono-nerd fish foot starship
|
adw-gtk3-git qt5ct qt5-wayland fontconfig ttf-readex-pro ttf-jetbrains-mono-nerd ttf-material-symbols-variable-git ttf-space-mono-nerd fish foot starship
|
||||||
|
|
||||||
### Screenshot and Recoder
|
### Screenshot and Recoder
|
||||||
swappy wf-recorder grim tesseract tesseract-data-eng slurp
|
swappy wf-recorder grim tesseract tesseract-data-eng slurp
|
||||||
|
|||||||
+16
-14
@@ -10,19 +10,20 @@ echo -e "Syntax: $0 [Options]...
|
|||||||
Idempotent installation script for dotfiles.
|
Idempotent installation script for dotfiles.
|
||||||
If no option is specified, run default install process.
|
If no option is specified, run default install process.
|
||||||
|
|
||||||
-h, --help Print this help message and exit
|
-h, --help Print this help message and exit
|
||||||
-f, --force (Dangerous) Force mode without any confirm
|
-f, --force (Dangerous) Force mode without any confirm
|
||||||
-c, --clean Clean the build cache first
|
-c, --clean Clean the build cache first
|
||||||
-s, --skip-sysupdate Skip \"sudo pacman -Syu\"
|
-s, --skip-sysupdate Skip \"sudo pacman -Syu\"
|
||||||
--skip-ags Skip installing ags and its config
|
--skip-ags Skip installing ags and its config
|
||||||
--skip-hyprland Skip installing the config for Hyprland
|
--skip-hyprland Skip installing the config for Hyprland
|
||||||
--skip-hypr-aur Skip installing hyprland-git
|
--skip-hypr-aur Skip installing hyprland-git
|
||||||
--skip-pymyc-aur Skip installing python-materialyoucolor-git
|
--skip-pymyc-aur Skip installing python-materialyoucolor-git
|
||||||
--skip-fish Skip installing the config for Fish
|
--skip-gradience-aur Skip installing gradience-git
|
||||||
--skip-plasmaintg Skip installing plasma-browser-integration
|
--skip-fish Skip installing the config for Fish
|
||||||
--skip-miscconf Skip copying the dirs and files to \".configs\" except for AGS, Fish and Hyprland
|
--skip-plasmaintg Skip installing plasma-browser-integration
|
||||||
--deplistfile <path> Specify a dependency list file. By default \"./scriptdata/dependencies.conf\"
|
--skip-miscconf Skip copying the dirs and files to \".configs\" except for AGS, Fish and Hyprland
|
||||||
--fontset <set> (Unavailable yet) Use a set of pre-defined font and config
|
--deplistfile <path> Specify a dependency list file. By default \"./scriptdata/dependencies.conf\"
|
||||||
|
--fontset <set> (Unavailable yet) Use a set of pre-defined font and config
|
||||||
"
|
"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,7 +34,7 @@ cleancache(){
|
|||||||
# `man getopt` to see more
|
# `man getopt` to see more
|
||||||
para=$(getopt \
|
para=$(getopt \
|
||||||
-o hfk:cs \
|
-o hfk:cs \
|
||||||
-l help,force,fontset:,deplistfile:,clean,skip-sysupdate,skip-ags,skip-fish,skip-hyprland,skip-hypr-aur,skip-pymyc-aur,skip-plasmaintg,skip-miscconf \
|
-l help,force,fontset:,deplistfile:,clean,skip-sysupdate,skip-ags,skip-fish,skip-hyprland,skip-hypr-aur,skip-pymyc-aur,skip-gradience-aur,skip-plasmaintg,skip-miscconf \
|
||||||
-n "$0" -- "$@")
|
-n "$0" -- "$@")
|
||||||
[ $? != 0 ] && echo "$0: Error when getopt, please recheck parameters." && exit 1
|
[ $? != 0 ] && echo "$0: Error when getopt, please recheck parameters." && exit 1
|
||||||
#####################################################################################
|
#####################################################################################
|
||||||
@@ -64,6 +65,7 @@ while true ; do
|
|||||||
--skip-hyprland) SKIP_HYPRLAND=true;shift;;
|
--skip-hyprland) SKIP_HYPRLAND=true;shift;;
|
||||||
--skip-hypr-aur) SKIP_HYPR_AUR=true;shift;;
|
--skip-hypr-aur) SKIP_HYPR_AUR=true;shift;;
|
||||||
--skip-pymyc-aur) SKIP_PYMYC_AUR=true;shift;;
|
--skip-pymyc-aur) SKIP_PYMYC_AUR=true;shift;;
|
||||||
|
--skip-gradience-aur) SKIP_GRADIENCE_AUR=true;shift;;
|
||||||
--skip-fish) SKIP_FISH=true;shift;;
|
--skip-fish) SKIP_FISH=true;shift;;
|
||||||
--skip-miscconf) SKIP_MISCCONF=true;shift;;
|
--skip-miscconf) SKIP_MISCCONF=true;shift;;
|
||||||
--skip-plasmaintg) SKIP_PLASMAINTG=true;shift;;
|
--skip-plasmaintg) SKIP_PLASMAINTG=true;shift;;
|
||||||
|
|||||||
Reference in New Issue
Block a user