remember when i thought an offline installer was a good idea? a pre-built squashfs that still needed internet to install DEs? "offline" in name only. it was a lie. a beautiful, naive lie. so i killed it. ripped out the mode picker, the connectivity check, the whole AskMode() circus. calamares-next now just shows a notice saying "yeah that wasnt actually offline" and launches directly into online mode. no more pretending. also fixed the QML nav button because having a greyed out "Next" on the last page is terrible UX. now it says "Done" and quits. youre welcome. and since we nuked the offline mode, might as well make the online mode look fucking spectacular. enter antergos-layan-theme: - kvantum theme because your apps deserve better than qt dreck - sddm theme (AntergosDark-Layan) for a sexy login screen - every plasma plasmoid from the rice (panel colorizer, netspeed, shutdown switch, applets, separators, music toolbar, the works) - yakuake arc-dark skin - antergos logos in /usr/share/logos and /usr/share/pixmaps - konsole profile, desktop appletsrc, all that jazz - kde_settings.conf now points to AntergosDark-Layan sddm theme also replaced the old antergos-grub-theme with the Layan grub theme because the old one was a git-sourced abomination. 75 distro icons, terminal box, selection widgets, antergos wallpaper. ships to /usr/share/grub/themes/antergos/ so calamares finds it. oh and a dozen audit fixes: - kscreenlockerrc wallpaper path fixed - kdialogrc no longer says some other distro - 7 stale knsregistry files deleted (dev machine was leaking) - systemd-inhibit guarded with command -v (dinit doesnt have it) - plasma restart uses killall not systemctl --user - "XeroLinux Toolkit" -> "Antergos Toolkit" in appletsrc - KDE_SESSION_VERSION=5 -> =6 (its 2026) - mirrorlist script says Artix not Arch - SDDM Messages.sh removed from build artifacts
80 lines
2.1 KiB
Bash
80 lines
2.1 KiB
Bash
#!/bin/bash
|
|
|
|
locales_arr=("${LANGUAGE//:/}")
|
|
first_locale="${locales_arr[0]:0:2}"
|
|
|
|
function window_title() {
|
|
case "$first_locale" in
|
|
"ru")
|
|
printf "Создание новой папки";;
|
|
"be")
|
|
printf "Стварэнне новай тэчкi";;
|
|
"sr")
|
|
printf "Стварање нове мапе";;
|
|
"uk")
|
|
printf "Створення нової папки";;
|
|
"nl")
|
|
printf "Nieuwe map aanmaken";;
|
|
"de")
|
|
printf "Neuen Ordner erstellen";;
|
|
"fr")
|
|
printf "Créer un nouveau dossier";;
|
|
"it")
|
|
printf "Crea una nuova cartella";;
|
|
"es")
|
|
printf "Crear nueva carpeta";;
|
|
*)
|
|
printf "Create new folder";;
|
|
esac
|
|
}
|
|
|
|
function window_message() {
|
|
case "$first_locale" in
|
|
"ru")
|
|
printf "Укажите имя новой папки";;
|
|
"be")
|
|
printf "Пакажыце iмя новай тэчкi";;
|
|
"sr")
|
|
printf "Наведите име нове мапе";;
|
|
"uk")
|
|
printf "Вкажiть iм'я нової папки";;
|
|
"nl")
|
|
printf "Geef de nieuwe map een naam";;
|
|
"de")
|
|
printf "Neuen Ordner benennen";;
|
|
"fr")
|
|
printf "Définir le nom du nouveau dossier";;
|
|
"it")
|
|
printf "Imposta il nome della nuova cartella";;
|
|
"es")
|
|
printf "Establecer el nombre de la carpeta nueva";;
|
|
*)
|
|
printf "Set new folder name";;
|
|
esac
|
|
}
|
|
|
|
function def_name() {
|
|
case "$first_locale" in
|
|
"ru")
|
|
printf "Новая папка";;
|
|
"be")
|
|
printf "Новая тэчка";;
|
|
"sr")
|
|
printf "Нова мапа";;
|
|
"uk")
|
|
printf "Нова папка";;
|
|
"nl")
|
|
printf "Nieuwe map";;
|
|
"de")
|
|
printf "Neuer Ordner";;
|
|
"fr")
|
|
printf "Nouveau dossier";;
|
|
"it")
|
|
printf "Nuova cartella";;
|
|
"es")
|
|
printf "Nueva carpeta";;
|
|
*)
|
|
printf "New folder";;
|
|
esac
|
|
}
|