Revamp debugging
This commit is contained in:
parent
bc87b75bb7
commit
d0ed30f3e6
5 changed files with 8 additions and 6 deletions
|
@ -34,6 +34,7 @@ usage() {
|
||||||
helpify "-i, --icon" "[$(IFS='|'; echo "${ICON_VARIANTS[*]}")]" "Set 'Activities' icon" "Default is 'standard'"
|
helpify "-i, --icon" "[$(IFS='|'; echo "${ICON_VARIANTS[*]}")]" "Set 'Activities' icon" "Default is 'standard'"
|
||||||
# Not sure if "background" is even needed here
|
# Not sure if "background" is even needed here
|
||||||
helpify "-b, --background" "[default|blank|IMAGE_PATH]" "Set gnome-shell background image" "Default is BigSur-like wallpaper"
|
helpify "-b, --background" "[default|blank|IMAGE_PATH]" "Set gnome-shell background image" "Default is BigSur-like wallpaper"
|
||||||
|
helpify "-N, --nautilus-style" "[$(IFS='|'; echo "${NAUTILUS_STYLE_VARIANTS[*]}")]" "Set Nautilus style" "Default is BigSur-like style"
|
||||||
helpify "-HD, --highdefinition" "" "Set to High Definition size" "Default is laptop size"
|
helpify "-HD, --highdefinition" "" "Set to High Definition size" "Default is laptop size"
|
||||||
helpify "--normal, --normalshowapps" "" "Set gnome-shell show apps button style to normal" "Default is bigsur"
|
helpify "--normal, --normalshowapps" "" "Set gnome-shell show apps button style to normal" "Default is bigsur"
|
||||||
helpify "--round, --roundedmaxwindow" "" "Set maximized window to rounded" "Default is square"
|
helpify "--round, --roundedmaxwindow" "" "Set maximized window to rounded" "Default is square"
|
||||||
|
|
|
@ -254,7 +254,7 @@ operation_aborted() {
|
||||||
prompt -e "GNOME : ${GNOME_VERSION}"
|
prompt -e "GNOME : ${GNOME_VERSION}"
|
||||||
prompt -e "REPO : ${repo_ver}\n"
|
prompt -e "REPO : ${repo_ver}\n"
|
||||||
|
|
||||||
prompt -i "TIP: you can google or report to us the infos above\n"
|
prompt -i "HINT: You can google or report to us the infos above\n"
|
||||||
prompt -i "https://github.com/vinceliuice/WhiteSur-gtk-theme/issues\n\n"
|
prompt -i "https://github.com/vinceliuice/WhiteSur-gtk-theme/issues\n\n"
|
||||||
|
|
||||||
rm -rf "${WHITESUR_TMP_DIR}"; exit 1
|
rm -rf "${WHITESUR_TMP_DIR}"; exit 1
|
||||||
|
|
|
@ -10,9 +10,9 @@ LineWidth=0
|
||||||
#The color (RGBA) of the outer stroke.
|
#The color (RGBA) of the outer stroke.
|
||||||
OuterStrokeColor=0;;0;;0;;95
|
OuterStrokeColor=0;;0;;0;;95
|
||||||
#The starting color (RGBA) of the fill gradient.
|
#The starting color (RGBA) of the fill gradient.
|
||||||
FillStartColor=235;;235;;235;;50
|
FillStartColor=209;;209;;209;;65
|
||||||
#The ending color (RGBA) of the fill gradient.
|
#The ending color (RGBA) of the fill gradient.
|
||||||
FillEndColor=235;;235;;235;;75
|
FillEndColor=209;;209;;209;;80
|
||||||
#The color (RGBA) of the inner stroke.
|
#The color (RGBA) of the inner stroke.
|
||||||
InnerStrokeColor=255;;255;;255;;245
|
InnerStrokeColor=255;;255;;255;;245
|
||||||
|
|
||||||
|
|
|
@ -163,7 +163,7 @@ $panel_fg: if($trans == 'true', white, $text_color);
|
||||||
@if $trans == 'true' { $panel_bg: if($variant == 'light', rgba(white, $panel_opacity/2 + 0.08), rgba(black, $panel_opacity)); }
|
@if $trans == 'true' { $panel_bg: if($variant == 'light', rgba(white, $panel_opacity/2 + 0.08), rgba(black, $panel_opacity)); }
|
||||||
@if $black == 'true' { $panel_fg: $text_color; }
|
@if $black == 'true' { $panel_fg: $text_color; }
|
||||||
|
|
||||||
$dash_bg: if($variant == 'light', rgba(#f1f1f1, $panel_opacity + 0.2), rgba(#222222, $panel_opacity/2 + 0.6));
|
$dash_bg: if($variant == 'light', rgba(#d1d1d1, $panel_opacity + 0.33), rgba(#222222, $panel_opacity/2 + 0.6));
|
||||||
$dash_fg: if($variant == 'light', black, white);
|
$dash_fg: if($variant == 'light', black, white);
|
||||||
|
|
||||||
// Entry colors
|
// Entry colors
|
||||||
|
|
|
@ -216,8 +216,9 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${firefox}" == "false" && "${edit_firefox}" == "false" && "${flatpak}" == "false" && "${snap}" == "false" && "${gdm}" == "false" && "${dash_to_dock}" == "false" ]]; then
|
if [[ "${firefox}" == "false" && "${edit_firefox}" == "false" && "${flatpak}" == "false" && "${snap}" == "false" && "${gdm}" == "false" && "${dash_to_dock}" == "false" ]]; then
|
||||||
echo; prompt -e "Oops... there's nothing to tweaks..."
|
echo; prompt -e "Oops... there's nothing to tweak..."
|
||||||
echo; prompt -i "Run ./tweaks.sh -h for help!..."
|
echo; prompt -i "HINT: Don't forget to define which component to tweak, e.g. '--gdm'"
|
||||||
|
echo; prompt -i "HINT: Run ./tweaks.sh -h for help!..."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in a new issue