Skip to content

Commit 88ff37e

Browse files
committed
Replaced gnome-terminal with gnome-console
1 parent d9969e7 commit 88ff37e

3 files changed

Lines changed: 17 additions & 16 deletions

File tree

scripts/configure-system.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ APPS_LANGUAGE="ro_RO"
4949
GAMES_LANGUAGE="en_GB"
5050

5151
# THEMES
52-
GTK_THEME="adw-gtk3-dark"
52+
GTK_THEME="Adwaita-dark"
5353
GTK_THEME_VARIANT="dark"
5454
GTK2_THEME="${GTK_THEME}"
5555
GTK3_THEME="${GTK_THEME}"

scripts/install-packages.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -693,9 +693,8 @@ fi
693693
### Terminals ###
694694
#################
695695
if [ "${OS}" = 'Linux' ]; then
696-
if [ "${DESKTOP_ENVIRONMENT}" = 'GNOME' ]; then
697-
install_native_package 'gnome-terminal'
698-
elif [ "${DESKTOP_ENVIRONMENT}" = 'Phosh' ]; then
696+
if [ "${DESKTOP_ENVIRONMENT}" = 'GNOME' ] \
697+
|| [ "${DESKTOP_ENVIRONMENT}" = 'Phosh' ]; then
699698
install_native_package 'gnome-console'
700699
elif [ "${DESKTOP_ENVIRONMENT}" = 'KDE' ]; then
701700
install_native_package 'konsole'
@@ -724,9 +723,6 @@ fi
724723
if "${HAS_GUI}"; then
725724
if [ "${DESKTOP_ENVIRONMENT}" = 'GNOME' ] \
726725
|| [ "${DESKTOP_ENVIRONMENT}" = 'Phosh' ]; then
727-
is_native_package_installed "gtk2" && install_native_package 'adwaita-dark' # GTK3's Adwaita Dark ported to GTK2
728-
is_native_package_installed "gtk3" && install_native_package 'adw-gtk3'
729-
install_flatpak 'org.gtk.Gtk3theme.adw-gtk3-dark'
730726
install_flatpak 'org.kde.KStyle.Adwaita'
731727
fi
732728

scripts/uninstall-packages.sh

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,27 +84,29 @@ uninstall_android_package 'com.xiaomi.mimusic2'
8484
[ "${DESKTOP_ENVIRONMENT}" = 'Phosh' ] && keep_first_installed_package 'io.bassi.Amberol' 'org.gnome.Decibels' 'org.gnome.Rhythmbox3'
8585

8686
# Note Taking apps
87-
keep_first_installed_package "com.automattic.simplenote" "foundation.e.notes"
87+
keep_first_installed_package 'com.automattic.simplenote' 'foundation.e.notes'
8888

8989
# System Monitors
9090
keep_first_installed_package 'gnome-system-monitor' 'net.nokyan.Resources'
9191

9292
# Task Management apps
93-
keep_first_installed_package "io.github.alainm23.planify" "org.gnome.Todo"
93+
keep_first_installed_package 'io.github.alainm23.planify' 'org.gnome.Todo'
94+
95+
# Terminal Emulators
96+
keep_first_installed_package 'gnome-console' 'gnome-terminal'
9497

9598
# Video players
96-
uninstall_android_package "com.mitv.mivideoplayer"
97-
uninstall_android_package "com.mitv.videoplayer"
99+
uninstall_android_package 'com.mitv.mivideoplayer'
100+
uninstall_android_package 'com.mitv.videoplayer'
98101
keep_first_installed_package 'org.gnome.Showtime' 'com.github.rafostar.Clapper' 'org.gnome.Totem'
99102

100103
# zzz OTHERS
101104
keep_first_installed_package 'chrony' 'ntp'
102105

103-
104106
# Uninstall the packages
105-
if [ "${DISTRO_FAMILY}" = "Arch" ]; then
107+
if [ "${DISTRO_FAMILY}" = 'Arch' ]; then
106108
if ${IS_POWERFUL_PC}; then
107-
uninstall_native_package "plank"
109+
uninstall_native_package 'plank'
108110
fi
109111

110112
uninstall_native_package "alsi" # Replaced by fastfetch
@@ -173,8 +175,11 @@ if [ "${DISTRO_FAMILY}" = "Arch" ]; then
173175
[ "${DESKTOP_ENVIRONMENT}" = "KDE" ] && uninstall_native_package "nautilus"
174176

175177
# Terminals
176-
[ "${DESKTOP_ENVIRONMENT}" != "GNOME" ] && uninstall_native_package "gnome-terminal"
177-
[ "${DESKTOP_ENVIRONMENT}" != "KDE" ] && uninstall_native_package "konsole"
178+
if [ "${DESKTOP_ENVIRONMENT}" != "GNOME" ]; then
179+
uninstall_native_package 'gnome-console'
180+
uninstall_native_package 'gnome-terminal'
181+
fi
182+
[ "${DESKTOP_ENVIRONMENT}" != "KDE" ] && uninstall_native_package 'konsole'
178183

179184
# Text Editors
180185
[ "${DESKTOP_ENVIRONMENT}" = "GNOME" ] && uninstall_native_package "kwrite"

0 commit comments

Comments
 (0)