skel: purge KDE/Breeze leftovers, add proper GNOME light blue Antergos theme

- Removed KDE/Breeze gtkrc, gtkrc-2.0, .gtkrc-2.0, colors.css,
  window_decorations.css, SVG assets, antergos-log-tool.desktop
- Fixed .bashrc: dropped exo-open fallback (XFCE)
- Fixed firefox.desktop: removed dead antergos.com URL
- Fixed user-commands: calamares -> cnchi
- Fixed PKGBUILD maintainer email
- Fixed wallpaper gschema override path
- Added proper light blue (#1d90cd) GTK3/GTK4 user CSS
- Added Antergos-NeXT GNOME Shell theme with dark panel
- Wired shell theme via gsettings + dbus-launch in chroot
- Added out/ and work/ to .gitignore
This commit is contained in:
2026-06-15 20:28:41 +02:00
parent 622ae6768c
commit f29905860e
46 changed files with 728 additions and 1012 deletions
@@ -0,0 +1,286 @@
/* Antergos-NeXT GNOME Shell Theme */
/* Lock screen & login screen */
.login-dialog {
background-color: #444444;
}
.login-dialog-title {
color: #eeeeee;
}
.login-dialog-button-box button {
background-color: #555555;
color: #eeeeee;
}
.login-dialog-button-box button:hover {
background-color: #666666;
}
.login-dialog-button-box button:active {
background-color: #4a4a4a;
}
/* Top panel */
#panel {
background-color: #444444;
color: #eeeeee;
height: 2.2em;
border-bottom: 0;
}
#panel .panel-button {
color: #eeeeee;
}
#panel .panel-button:hover {
background-color: #555555;
}
#panel .panel-button:active,
#panel .panel-button:checked {
background-color: #1d90cd;
color: #ffffff;
}
/* System menu */
.system-menu-action {
color: #eeeeee;
}
/* Activities button */
#panel .panel-button#activities {
color: #1d90cd;
}
/* Screen shield */
.screen-shield-background {
background-color: #444444;
}
/* Overview */
#overview {
background-color: rgba(68, 68, 68, 0.95);
}
/* Search */
.search-entry {
background-color: #555555;
color: #eeeeee;
border-color: #4a4a4a;
}
.search-entry:focus {
border-color: #1d90cd;
}
/* App grid */
.icon-grid .overview-icon {
color: #eeeeee;
}
.app-well-app:hover .overview-icon,
.app-well-app:active .overview-icon {
background-color: rgba(29, 144, 205, 0.3);
}
/* Workspace thumbnails */
.workspace-thumbnails {
background-color: rgba(68, 68, 68, 0.8);
}
.workspace-thumbnail-indicator {
border: 3px solid #1d90cd;
}
/* Window picker */
.window-close {
background-color: #cc575d;
color: #ffffff;
}
.window-close:hover {
background-color: #d7787d;
}
/* Notifications */
.notification-banner {
background-color: #444444;
color: #eeeeee;
border: 1px solid #555555;
}
.notification-banner:hover {
background-color: #4a4a4a;
}
.notification-banner .notification-title {
color: #eeeeee;
}
.notification-banner .notification-body {
color: #bbbbbb;
}
/* Notification close button */
.notification-close {
background-color: #cc575d;
color: #ffffff;
}
/* Message list */
.message-list {
background-color: #444444;
color: #eeeeee;
}
.message-list .message-list-placeholder {
color: #888888;
}
/* Message */
.message {
background-color: #4a4a4a;
}
.message:hover {
background-color: #555555;
}
.message .message-header .message-header-content .message-header-right {
color: #aaaaaa;
}
/* Calendar */
.calendar {
background-color: #444444;
color: #eeeeee;
}
.calendar .calendar-month-header .calendar-month-label {
color: #eeeeee;
}
.calendar .calendar-day-base {
color: #eeeeee;
}
.calendar .calendar-day-base:hover {
background-color: #555555;
}
.calendar .calendar-day-base:selected {
background-color: #1d90cd;
color: #ffffff;
}
.calendar .calendar-day-base.today {
border-color: #1d90cd;
}
.calendar .calendar-day-base.today:selected {
background-color: #1d90cd;
color: #ffffff;
}
/* Dash */
#dash {
background-color: rgba(68, 68, 68, 0.85);
}
#dash .app-well-app:hover .overview-icon {
background-color: rgba(29, 144, 205, 0.3);
}
/* Running apps indicator */
#dash .app-well-app-running-dot {
background-color: #1d90cd;
}
/* Switcher popups */
.switcher-list {
background-color: #444444;
color: #eeeeee;
border: 1px solid #555555;
}
.switcher-list .item-box:hover {
background-color: #555555;
}
.switcher-list .item-box:selected {
background-color: #1d90cd;
color: #ffffff;
}
/* OSD */
.osd-window {
background-color: #444444;
color: #eeeeee;
border: 1px solid #555555;
}
/* Screensharing */
.screen-sharing-indicator {
background-color: #444444;
color: #eeeeee;
}
/* End session dialog */
.end-session-dialog {
background-color: #444444;
color: #eeeeee;
}
.end-session-dialog .end-session-dialog-subject {
color: #eeeeee;
font-weight: bold;
}
/* Modal dialog */
.modal-dialog {
background-color: #444444;
color: #eeeeee;
border: 1px solid #555555;
}
.modal-dialog .modal-dialog-title {
color: #eeeeee;
font-weight: bold;
}
.modal-dialog .modal-dialog-button-box button {
background-color: #555555;
color: #eeeeee;
}
.modal-dialog .modal-dialog-button-box button:hover {
background-color: #666666;
}
.modal-dialog .modal-dialog-button-box button:active {
background-color: #4a4a4a;
}
/* Prompt dialogs */
.prompt-dialog {
background-color: #444444;
color: #eeeeee;
}
.prompt-dialog .prompt-dialog-headline {
color: #eeeeee;
font-weight: bold;
}
/* Auth dialogs */
.fingerprint-dialog {
background-color: #444444;
color: #eeeeee;
}
/* Extension: User Themes indicator */
.extension-user-theme {
color: #1d90cd;
}