update
This commit is contained in:
parent
396e5b6f32
commit
8de998ac85
30
install.sh
30
install.sh
@ -115,7 +115,6 @@ install() {
|
|||||||
mkdir -p ${THEME_DIR}/gnome-shell
|
mkdir -p ${THEME_DIR}/gnome-shell
|
||||||
cp -r ${SRC_DIR}/assets/gnome-shell/icons ${THEME_DIR}/gnome-shell
|
cp -r ${SRC_DIR}/assets/gnome-shell/icons ${THEME_DIR}/gnome-shell
|
||||||
cp -r ${SRC_DIR}/main/gnome-shell/pad-osd.css ${THEME_DIR}/gnome-shell
|
cp -r ${SRC_DIR}/main/gnome-shell/pad-osd.css ${THEME_DIR}/gnome-shell
|
||||||
cp -r ${SRC_DIR}/main/gnome-shell/gdm3${color}.css ${THEME_DIR}/gnome-shell/gdm3.css
|
|
||||||
cp -r ${SRC_DIR}/main/gnome-shell/gnome-shell${color}${opacity}${alt}.css ${THEME_DIR}/gnome-shell/gnome-shell.css
|
cp -r ${SRC_DIR}/main/gnome-shell/gnome-shell${color}${opacity}${alt}.css ${THEME_DIR}/gnome-shell/gnome-shell.css
|
||||||
cp -r ${SRC_DIR}/assets/gnome-shell/common-assets ${THEME_DIR}/gnome-shell/assets
|
cp -r ${SRC_DIR}/assets/gnome-shell/common-assets ${THEME_DIR}/gnome-shell/assets
|
||||||
cp -r ${SRC_DIR}/assets/gnome-shell/assets${color}/*.svg ${THEME_DIR}/gnome-shell/assets
|
cp -r ${SRC_DIR}/assets/gnome-shell/assets${color}/*.svg ${THEME_DIR}/gnome-shell/assets
|
||||||
@ -250,32 +249,33 @@ install_gdm() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# > Ubuntu 20.04
|
# > Ubuntu 20.04
|
||||||
if [[ -f "$UBUNTU_YARU_THEME_FILE" && -f "$GS_THEME_FILE.bak" ]]; then
|
if [[ -d "$SHELL_THEME_FOLDER/Yaru" && -f "$GS_THEME_FILE.bak" ]]; then
|
||||||
prompt -i "Installing Ubuntu GDM theme..."
|
prompt -i "Installing Ubuntu GDM theme..."
|
||||||
cp -an "$UBUNTU_YARU_THEME_FILE" "$UBUNTU_YARU_THEME_FILE.bak"
|
cp -an "$UBUNTU_YARU_THEME_FILE" "$UBUNTU_YARU_THEME_FILE.bak"
|
||||||
rm -rf "$UBUNTU_YARU_THEME_FILE"
|
rm -rf "$UBUNTU_YARU_THEME_FILE"
|
||||||
|
rm -rf "$YARU_GDM_THEME_DIR" && mkdir -p "$YARU_GDM_THEME_DIR"
|
||||||
|
|
||||||
mkdir -p ${YARU_GDM_THEME_DIR}/gnome-shell
|
mkdir -p "$YARU_GDM_THEME_DIR"/gnome-shell
|
||||||
mkdir -p ${YARU_GDM_THEME_DIR}/gnome-shell/Yaru
|
mkdir -p "$YARU_GDM_THEME_DIR"/gnome-shell/Yaru
|
||||||
cp -r ${SRC_DIR}/assets/gnome-shell/icons ${YARU_GDM_THEME_DIR}/gnome-shell
|
cp -r "$SRC_DIR"/assets/gnome-shell/icons "$YARU_GDM_THEME_DIR"/gnome-shell
|
||||||
cp -r ${SRC_DIR}/main/gnome-shell/pad-osd.css ${YARU_GDM_THEME_DIR}/gnome-shell
|
cp -r "$SRC_DIR"/main/gnome-shell/pad-osd.css "$YARU_GDM_THEME_DIR"/gnome-shell
|
||||||
cp -r ${SRC_DIR}/main/gnome-shell/gdm3${color}.css ${YARU_GDM_THEME_DIR}/gnome-shell/gdm3.css
|
cp -r "$SRC_DIR"/main/gnome-shell/gdm3${color}.css "$YARU_GDM_THEME_DIR"/gnome-shell/gdm3.css
|
||||||
cp -r ${SRC_DIR}/main/gnome-shell/gnome-shell${color}.css ${YARU_GDM_THEME_DIR}/gnome-shell/Yaru/gnome-shell.css
|
cp -r "$SRC_DIR"/main/gnome-shell/gnome-shell${color}.css "$YARU_GDM_THEME_DIR"/gnome-shell/Yaru/gnome-shell.css
|
||||||
cp -r ${SRC_DIR}/assets/gnome-shell/common-assets ${YARU_GDM_THEME_DIR}/gnome-shell/assets
|
cp -r "$SRC_DIR"/assets/gnome-shell/common-assets "$YARU_GDM_THEME_DIR"/gnome-shell/assets
|
||||||
cp -r ${SRC_DIR}/assets/gnome-shell/assets${color}/*.svg ${YARU_GDM_THEME_DIR}/gnome-shell/assets
|
cp -r "$SRC_DIR"/assets/gnome-shell/assets${color}/*.svg "$YARU_GDM_THEME_DIR"/gnome-shell/assets
|
||||||
cp -r ${SRC_DIR}/assets/gnome-shell/activities/activities.svg ${YARU_GDM_THEME_DIR}/gnome-shell/assets
|
cp -r "$SRC_DIR"/assets/gnome-shell/activities/activities.svg "$YARU_GDM_THEME_DIR"/gnome-shell/assets
|
||||||
|
|
||||||
cd "${YARU_GDM_THEME_DIR}/gnome-shell"
|
cd "$YARU_GDM_THEME_DIR"/gnome-shell
|
||||||
mv -f assets/no-events.svg no-events.svg
|
mv -f assets/no-events.svg no-events.svg
|
||||||
mv -f assets/process-working.svg process-working.svg
|
mv -f assets/process-working.svg process-working.svg
|
||||||
mv -f assets/no-notifications.svg no-notifications.svg
|
mv -f assets/no-notifications.svg no-notifications.svg
|
||||||
|
|
||||||
glib-compile-resources \
|
glib-compile-resources \
|
||||||
--sourcedir="$YARU_GDM_THEME_DIR/gnome-shell" \
|
--sourcedir="$YARU_GDM_THEME_DIR"/gnome-shell \
|
||||||
--target="$UBUNTU_YARU_THEME_FILE" \
|
--target="$UBUNTU_YARU_THEME_FILE" \
|
||||||
"${SRC_DIR}/main/gnome-shell/gnome-shell-yaru-theme.gresource.xml"
|
"$SRC_DIR"/main/gnome-shell/gnome-shell-yaru-theme.gresource.xml
|
||||||
|
|
||||||
rm -rf ${YARU_GDM_THEME_DIR}
|
rm -rf "$YARU_GDM_THEME_DIR"
|
||||||
# [[ -d "$UBUNTU_MODES_FOLDER" ]] && cp -an "$UBUNTU_MODES_FOLDER" "$UBUNTU_MODES_FOLDER"-bak
|
# [[ -d "$UBUNTU_MODES_FOLDER" ]] && cp -an "$UBUNTU_MODES_FOLDER" "$UBUNTU_MODES_FOLDER"-bak
|
||||||
# [[ -f "$UBUNTU_JSON_FILE" ]] && sed -i "s|Yaru/gnome-shell.css|gnome-shell.css|" "$UBUNTU_JSON_FILE"
|
# [[ -f "$UBUNTU_JSON_FILE" ]] && sed -i "s|Yaru/gnome-shell.css|gnome-shell.css|" "$UBUNTU_JSON_FILE"
|
||||||
# [[ -f "$YURA_JSON_FILE" ]] && sed -i "s|Yaru/gnome-shell.css|gnome-shell.css|" "$YURA_JSON_FILE"
|
# [[ -f "$YURA_JSON_FILE" ]] && sed -i "s|Yaru/gnome-shell.css|gnome-shell.css|" "$YURA_JSON_FILE"
|
||||||
|
@ -31,7 +31,6 @@
|
|||||||
<file>icons/scalable/actions/pointer-primary-click-symbolic.svg</file>
|
<file>icons/scalable/actions/pointer-primary-click-symbolic.svg</file>
|
||||||
<file>icons/scalable/actions/pointer-secondary-click-symbolic.svg</file>
|
<file>icons/scalable/actions/pointer-secondary-click-symbolic.svg</file>
|
||||||
<file>gnome-shell.css</file>
|
<file>gnome-shell.css</file>
|
||||||
<file>gdm3.css</file>
|
|
||||||
<file>pad-osd.css</file>
|
<file>pad-osd.css</file>
|
||||||
<file>no-events.svg</file>
|
<file>no-events.svg</file>
|
||||||
<file>no-notifications.svg</file>
|
<file>no-notifications.svg</file>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user