Compare commits
53 Commits
Author | SHA1 | Date | |
---|---|---|---|
317378612d
|
|||
d3c288cf7d
|
|||
e1ab6d08a1 | |||
48ea97a3f6
|
|||
9593f8ff03
|
|||
6dfa4b9e6b
|
|||
6881fe0cef
|
|||
e6fe616ed3
|
|||
7af4cedf19 | |||
db1b313291 | |||
986ce94171 | |||
f3e2b9b96e | |||
96db9517b9 | |||
ebe33f9d65 | |||
3be24a06e1
|
|||
6e902d0454
|
|||
5f5796c831 | |||
a6ff722626 | |||
3ef02ba0d3 | |||
5046c661f0
|
|||
b17bfc6cec | |||
6ff51b402c
|
|||
d9563bd84a
|
|||
6236db4961
|
|||
601a31b58b
|
|||
717c24fb14
|
|||
62b37feee1
|
|||
0da48facad
|
|||
15368a2d22
|
|||
6342663d0c | |||
8694b906fe | |||
bc8ab18a98 | |||
2a1be8fcf6 | |||
dacb8ca16e
|
|||
6dbd9165db
|
|||
0f4aa9085b
|
|||
42fd80cc8a
|
|||
c700c6e52d
|
|||
161c12e686
|
|||
516f403bcc
|
|||
3c6234f4de
|
|||
e90cb408c3
|
|||
9eb236547a
|
|||
daa1f5c886
|
|||
d06c3d95ba
|
|||
d8657d9d33
|
|||
41547e70f3 | |||
0ef9017aeb | |||
3597a15937
|
|||
af478a758d
|
|||
696728c9de
|
|||
227cb3c250
|
|||
49aad5e5ae |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
||||
to_package/
|
||||
**/rc.conf
|
||||
|
19
TODO
19
TODO
@@ -15,14 +15,29 @@ DONE mimeapps.list must be separate for each profile
|
||||
|
||||
DONE Networkmanager in LXQt
|
||||
DONE GRUB remove 1280x1024
|
||||
Autologin-session doesn't work
|
||||
|
||||
2020-03-08
|
||||
==========
|
||||
|
||||
DONE Use firefox-dark-reader instead of local/skel profile's
|
||||
DONE Also consider a few more addons from the group
|
||||
TODO Test firefox before releasing
|
||||
DONE Test firefox before releasing
|
||||
|
||||
2020-04-18
|
||||
DONE XFCE4 profile
|
||||
|
||||
2020-06-08
|
||||
Autologin-session selection
|
||||
Cinnamon fonts should change to Roboto 11 instead of M$ ones, for consistency
|
||||
DONE Remove screengrab from plasma
|
||||
DONE Use QTWEBENGINE_CHROMIUM_FLAGS=--blink-settings=darkMode=4,darkModeImagePolicy=1/--blink-settings=darkModeEnabled=true,darkModeInversionAlgorithm=4/--force-dark-mode or whatever works with Qt-5.15
|
||||
DONE The window title font in XFCE needs to be adjusted
|
||||
DONE The Libreoffice background needs to change from 'Automatic' to '#2a2a2a'
|
||||
DONE Fluid is dark in GTK but light in Qt
|
||||
community-qt still boots into LXQt
|
||||
DONE The SDDM theme could use some darkening
|
||||
DONE Perhaps add man-pages to the ISOs
|
||||
|
||||
2020-10-15
|
||||
Fix libreoffice-7 bright side-pane; perhaps related, /etc/profile.d/libreoffice-fresh.sh: SAL_USE_VCLPLUGIN=gtk3 spurts (soffice:5766): Gtk-WARNING **: Theme parsing error: gtk.css:14:33: Failed to import: Error opening file /home/artix/.config/gtk-3.0/window_decorations.css: No such file or directory
|
||||
Plasma is getting fucked-up with QT_* set to gtk; see kinfocenter - the alternative kvantum-dark has ugly widgets
|
||||
|
@@ -32,6 +32,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@@ -81,6 +82,8 @@ which
|
||||
efibootmgr
|
||||
xfsprogs
|
||||
zsh
|
||||
modemmanager
|
||||
usb_modeswitch
|
||||
|
||||
mkinitcpio-nfs-utils
|
||||
squashfs-tools
|
||||
|
110
buildISOs-weekly-cron.sh
Executable file
110
buildISOs-weekly-cron.sh
Executable file
@@ -0,0 +1,110 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Automated ISO build script
|
||||
# Builds all profiles, all inits and rsyncs to ISO download server
|
||||
# 2019-2020, nous
|
||||
|
||||
export TERM=xterm-256color
|
||||
source /usr/share/makepkg/util/message.sh
|
||||
colorize
|
||||
|
||||
WORKSPACE=/home/$USER/artools-workspace
|
||||
PROFILES=${WORKSPACE}/iso-profiles
|
||||
REPO=/srv/iso/weekly-iso
|
||||
#RSYNCARGS="-au --delete-after --bwlimit=5M"
|
||||
RSYNCARGS="-au --delete-after"
|
||||
CWD=$PROFILES
|
||||
DATE=$(date +"%Y%m%d")
|
||||
|
||||
mkdir -p ${PROFILES}/logs
|
||||
|
||||
cd $WORKSPACE
|
||||
if [[ -d $PROFILES ]]; then
|
||||
cd $PROFILES
|
||||
git pull
|
||||
else
|
||||
git clone https://gitea.artixlinux.org/artix/iso-profiles.git
|
||||
fi
|
||||
|
||||
cd $PROFILES
|
||||
all_profiles=($(find -maxdepth 1 -type d | sed 's|.*/||'| egrep -v "\.|common|linexa|git|logs|community$" | sort))
|
||||
all_inits=('openrc' 'runit' 's6')
|
||||
|
||||
usage() {
|
||||
echo
|
||||
echo -n "${BOLD}Usage: "
|
||||
echo "$0 [-b stable|gremlins] -p <profile>[,profile,...]|[all] -i <init>[,init,...]|[all]${ALL_OFF}"
|
||||
echo
|
||||
echo -n "All profiles, all inits: "
|
||||
echo "$0 -p all -i all"
|
||||
echo
|
||||
echo "Available branches: ${BOLD}stable (default, if omitted), gremlins${ALL_OFF}"
|
||||
echo "Available profiles: ${GREEN}${all_profiles[@]}${ALL_OFF}"
|
||||
echo "Available inits: ${CYAN}${all_inits[@]} ${ALL_OFF}"
|
||||
echo
|
||||
echo "Example: $0 -p base,lxqt,lxde -i openrc,runit"
|
||||
echo " $0 -b gremlins -p base -i s6"
|
||||
echo
|
||||
exit 1
|
||||
}
|
||||
|
||||
timestamp() { date +"%Y/%m/%d-%H:%M:%S"; }
|
||||
|
||||
profiles=(${all_profiles[@]})
|
||||
inits=(${all_inits[@]})
|
||||
branch=''
|
||||
|
||||
echo "Building ISO(s):"
|
||||
echo " branch ${BOLD}${_branch}${ALL_OFF}"
|
||||
echo " profiles ${GREEN}${profiles[@]}${ALL_OFF}"
|
||||
echo " inits ${CYAN}${inits[@]}${ALL_OFF}"
|
||||
|
||||
echo "REMOVING EXISTING ISOs IN 10 SECONDS!"
|
||||
sleep 10
|
||||
rm -fr $REPO/* &
|
||||
|
||||
cd $PROFILES && git checkout master
|
||||
for profile in ${profiles[@]}; do
|
||||
for init in ${inits[@]}; do
|
||||
logfile=$PROFILES/logs/buildiso-$DATE
|
||||
logfile_debug=$logfile-$profile-$init
|
||||
echo "#################################" >> $logfile.log
|
||||
stamp=$(timestamp)
|
||||
[[ $profile =~ 'community' ]] && [[ $init == 'runit' || $init == 's6' ]] && \
|
||||
{ echo "$stamp == ${YELLOW}Skipping building ${_branch} $profile ISO with $init${ALL_OFF}" >> $logfile.log; continue; }
|
||||
echo "$stamp == Begin building ${_branch} $profile ISO with $init" >> $logfile.log
|
||||
[[ $init == 'openrc' ]] && cp -f ${PROFILES}/rc.conf ${PROFILES}/$profile/root-overlay/etc/
|
||||
echo "VERSION_ID=$DATE" >| ${PROFILES}/$profile/root-overlay/etc/buildinfo
|
||||
echo "VARIANT=${profile}-${init}" >> ${PROFILES}/$profile/root-overlay/etc/buildinfo
|
||||
nice -n 20 buildiso${branch} -p $profile -i $init 2>&1 >> ${logfile_debug}.log
|
||||
res=$?
|
||||
stamp=$(timestamp)
|
||||
if [ $res == 0 ]; then
|
||||
echo "$stamp == ${GREEN}Finished building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log
|
||||
else
|
||||
echo "$stamp == ${RED}Failed building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log
|
||||
echo "$stamp == ${RED}Retrying once ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log
|
||||
echo "$stamp == Re-building ${_branch} ${profile}-${init}" >> $logfile.log
|
||||
nice -n 20 buildiso${branch} -p $profile -i $init 2>&1 >> ${logfile_debug}.log
|
||||
res=$?
|
||||
stamp=$(timestamp)
|
||||
if [ $res == 0 ]; then
|
||||
{ echo "$stamp == ${GREEN}Finished building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log; } \
|
||||
else
|
||||
{ echo "$stamp == ${RED}Failed building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log; continue; }
|
||||
fi
|
||||
fi
|
||||
rm -f ${PROFILES}/$profile/root-overlay/etc/{rc.conf,buildinfo}
|
||||
sudo rm -fr /var/lib/artools/buildiso/$profile
|
||||
# [[ $res == 0 ]] && { echo "$stamp == ${GREEN}Finished building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log; } \
|
||||
# || { echo "$stamp == ${RED}Failed building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log; continue; }
|
||||
mv -v ${WORKSPACE}/iso/$profile/artix-$profile-$init-*.iso ${REPO}/
|
||||
cd $REPO && { sha256sum artix-*.iso > ${REPO}/sha256sums & }
|
||||
done
|
||||
done
|
||||
# Redundancy tasks
|
||||
rm -f ${PROFILES}/*/root-overlay/etc/{rc.conf,buildinfo}
|
||||
rm -f ${REPO}/artix-*community*{runit,s6}*.iso
|
||||
port=$(cat $WORKSPACE/port)
|
||||
rsync $RSYNCARGS ${REPO}/ nous@iso.artixlinux.org:/srv/iso/weekly-iso/ -e "ssh -p $port"
|
||||
rsync $RSYNCARGS ${REPO}/ nous@download.artixlinux.org:/srv/iso/weekly-iso/ -e "ssh -p $port"
|
127
buildISOs-weekly.sh
Executable file
127
buildISOs-weekly.sh
Executable file
@@ -0,0 +1,127 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Automated ISO build script
|
||||
# Builds select profiles / inits
|
||||
# 2019-2020, nous
|
||||
|
||||
export TERM=xterm-256color
|
||||
source /usr/share/makepkg/util/message.sh
|
||||
colorize
|
||||
|
||||
WORKSPACE=/home/$USER/artools-workspace
|
||||
PROFILES=${WORKSPACE}/iso-profiles
|
||||
REPO=/srv/iso/weekly-iso
|
||||
CWD=$PROFILES
|
||||
DATE=$(date +"%Y%m%d")
|
||||
|
||||
mkdir -p ${PROFILES}/logs
|
||||
|
||||
cd $WORKSPACE
|
||||
if [[ -d $PROFILES ]]; then
|
||||
cd $PROFILES
|
||||
git pull
|
||||
else
|
||||
git clone https://gitea.artixlinux.org/artix/iso-profiles.git
|
||||
fi
|
||||
|
||||
cd $PROFILES
|
||||
all_profiles=($(find -maxdepth 1 -type d | sed 's|.*/||'| egrep -v "\.|common|linexa|git|logs|community$" | sort))
|
||||
all_inits=('openrc' 'runit' 's6')
|
||||
|
||||
usage() {
|
||||
echo
|
||||
echo -n "${BOLD}Usage: "
|
||||
echo "$0 [-b stable|gremlins] -p <profile>[,profile,...]|[all] -i <init>[,init,...]|[all]${ALL_OFF}"
|
||||
echo
|
||||
echo -n "All profiles, all inits: "
|
||||
echo "$0 -p all -i all"
|
||||
echo
|
||||
echo "Available branches: ${BOLD}stable (default, if omitted), gremlins${ALL_OFF}"
|
||||
echo "Available profiles: ${GREEN}${all_profiles[@]}${ALL_OFF}"
|
||||
echo "Available inits: ${CYAN}${all_inits[@]} ${ALL_OFF}"
|
||||
echo
|
||||
echo "Example: $0 -p base,lxqt,lxde -i openrc,runit"
|
||||
echo " $0 -b gremlins -p base -i s6"
|
||||
echo
|
||||
exit 1
|
||||
}
|
||||
|
||||
timestamp() { date +"%Y/%m/%d-%H:%M:%S"; }
|
||||
|
||||
[[ $# -eq 0 ]] && usage
|
||||
|
||||
while getopts "b:p:i:" option; do
|
||||
case $option in
|
||||
b)
|
||||
_branch=$OPTARG
|
||||
[[ ${_branch} =~ (^$|stable|gremlins) ]] || { echo; echo "${RED}No valid branch selected!${ALL_OFF}"; echo; usage; }
|
||||
[[ ${_branch} == 'stable' || ${_branch} == '' ]] && { _branch='stable'; branch=''; }
|
||||
[[ ${_branch} == 'gremlins' ]] && branch='-gremlins'
|
||||
;;
|
||||
p)
|
||||
_profile=$OPTARG
|
||||
for p in ${all_profiles[@]}; do
|
||||
[[ ${_profile} =~ $p ]] && profiles+=($p)
|
||||
done
|
||||
[[ ${_profile} == all ]] && profiles=(${all_profiles[@]})
|
||||
;;
|
||||
i)
|
||||
_init=$OPTARG
|
||||
for i in ${all_inits[@]}; do
|
||||
[[ ${_init} =~ $i ]] && inits+=($i)
|
||||
done
|
||||
[[ ${_init} == all ]] && inits=(${all_inits[@]})
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
[[ $branch ]] || { _branch='stable'; branch=''; }
|
||||
[[ ${#profiles[@]} -eq 0 ]] && { echo; echo "${RED}No valid profiles selected!${ALL_OFF}"; echo; usage; }
|
||||
[[ ${#inits[@]} -eq 0 ]] && { echo; echo "${RED}No valid inits selected!"${ALL_OFF}; echo; usage; }
|
||||
|
||||
echo "Building ISO(s):"
|
||||
echo " branch ${BOLD}${_branch}${ALL_OFF}"
|
||||
echo " profiles ${GREEN}${profiles[@]}${ALL_OFF}"
|
||||
echo " inits ${CYAN}${inits[@]}${ALL_OFF}"
|
||||
|
||||
|
||||
cd $PROFILES && git checkout master
|
||||
for profile in ${profiles[@]}; do
|
||||
for init in ${inits[@]}; do
|
||||
logfile=$PROFILES/logs/buildiso-$DATE
|
||||
logfile_debug=$logfile-$profile-$init
|
||||
echo "#################################" >> ${logfile}.log
|
||||
stamp=$(timestamp)
|
||||
[[ $profile =~ 'community' ]] && [[ $init == 'runit' || $init == 's6' ]] && \
|
||||
{ echo "$stamp == ${YELLOW}Skipping building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log; continue; }
|
||||
echo "$stamp == Begin building ${_branch} ${profile}-${init}" >> $logfile.log
|
||||
[[ $init == 'openrc' ]] && cp ${WORKSPACE}/tweaks/rc.conf ${PROFILES}/$profile/root-overlay/etc/
|
||||
echo "VERSION_ID=$DATE" >| ${PROFILES}/$profile/root-overlay/etc/buildinfo
|
||||
echo "VARIANT=${profile}-${init}" >> ${PROFILES}/$profile/root-overlay/etc/buildinfo
|
||||
nice -n 20 buildiso${branch} -p $profile -i $init 2>&1 >> ${logfile_debug}.log
|
||||
res=$?
|
||||
stamp=$(timestamp)
|
||||
if [ $res == 0 ]; then
|
||||
echo "$stamp == ${GREEN}Finished building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log
|
||||
else
|
||||
echo "$stamp == ${RED}Failed building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log
|
||||
echo "$stamp == ${RED}Retrying once ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log
|
||||
echo "$stamp == Re-building ${_branch} ${profile}-${init}" >> $logfile.log
|
||||
nice -n 20 buildiso${branch} -p $profile -i $init 2>&1 >> ${logfile_debug}.log
|
||||
res=$?
|
||||
stamp=$(timestamp)
|
||||
if [ $res == 0 ]; then
|
||||
{ echo "$stamp == ${GREEN}Finished building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log; } \
|
||||
else
|
||||
{ echo "$stamp == ${RED}Failed building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log; continue; }
|
||||
fi
|
||||
fi
|
||||
rm -f ${PROFILES}/$profile/root-overlay/etc/{rc.conf,buildinfo}
|
||||
sudo rm -fr /var/lib/artools/buildiso/$profile
|
||||
# [[ $res == 0 ]] && { echo "$stamp == ${GREEN}Finished building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log; } \
|
||||
# || { echo "$stamp == ${RED}Failed building ${_branch} ${profile}-${init}${ALL_OFF}" >> $logfile.log; continue; }
|
||||
mv -v ${WORKSPACE}/iso/$profile/artix-$profile-$init-*.iso ${REPO}/
|
||||
cd $REPO && { sha256sum artix-*.iso > ${REPO}/sha256sums & }
|
||||
done
|
||||
done
|
||||
rm -f ${PROFILES}/*/root-overlay/etc/{rc.conf,buildinfo}
|
@@ -8,7 +8,7 @@ colorize
|
||||
|
||||
WORKSPACE=/home/$USER/artools-workspace
|
||||
PROFILES=${WORKSPACE}/iso-profiles
|
||||
REPO=/srv/iso/testing-iso
|
||||
REPO=/srv/iso/weekly-iso
|
||||
CWD=`pwd`
|
||||
|
||||
cd $PROFILES
|
||||
|
@@ -33,6 +33,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@@ -86,6 +87,8 @@ zsh
|
||||
alsa-firmware
|
||||
powertop
|
||||
inxi
|
||||
modemmanager
|
||||
usb_modeswitch
|
||||
|
||||
@openrc alsa-utils-openrc
|
||||
@openrc avahi-openrc
|
||||
@@ -147,7 +150,6 @@ artix-branding-base
|
||||
artix-gtk-presets
|
||||
artix-qt-presets
|
||||
xcursor-premium
|
||||
artix-sddm-theme
|
||||
|
||||
# Cinnamon
|
||||
cinnamon
|
||||
|
@@ -1,205 +0,0 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Name=Install Artix
|
||||
GenericName=System Installer
|
||||
Keywords=calamares;system;installer;
|
||||
TryExec=calamares
|
||||
Exec=pkexec env DISPLAY=:0 XAUTHORITY=/home/artix/.Xauthority QT_QPA_PLATFORMTHEME=gtk2 calamares
|
||||
Comment=Calamares — System Installer
|
||||
Icon=artixlinux-logo
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Categories=Qt;System;
|
||||
X-AppStream-Ignore=true
|
||||
|
||||
Name[ar]=تثبيت النظام
|
||||
Icon[ar]=كالامارس
|
||||
GenericName[ar]=مثبت النظام
|
||||
Comment[ar]=كالامارس - مثبت النظام
|
||||
Name[be]=Усталяваць сістэму
|
||||
Icon[be]=calamares
|
||||
GenericName[be]=Усталёўшчык сістэмы
|
||||
Comment[be]=Calamares — усталёўшчык сістэмы
|
||||
Name[bg]=Инсталирай системата
|
||||
Icon[bg]=calamares
|
||||
GenericName[bg]=Системен Инсталатор
|
||||
Comment[bg]=Calamares — Системен Инсталатор
|
||||
Name[ca]=Instal·la el sistema
|
||||
Icon[ca]=calamares
|
||||
GenericName[ca]=Instal·lador de sistema
|
||||
Comment[ca]=Calamares — Instal·lador de sistema
|
||||
Name[da]=Installér system
|
||||
Icon[da]=calamares
|
||||
GenericName[da]=Systeminstallationsprogram
|
||||
Comment[da]=Calamares — Systeminstallationsprogram
|
||||
Name[de]=System installieren
|
||||
Icon[de]=calamares
|
||||
GenericName[de]=Installation des Betriebssystems
|
||||
Comment[de]=Calamares - Installation des Betriebssystems
|
||||
Name[el]=Εγκατάσταση συστήματος
|
||||
Icon[el]=calamares
|
||||
GenericName[el]=Εγκατάσταση συστήματος
|
||||
Comment[el]=Calamares — Εγκατάσταση συστήματος
|
||||
Name[en_GB]=Install System
|
||||
Icon[en_GB]=calamares
|
||||
GenericName[en_GB]=System Installer
|
||||
Comment[en_GB]=Calamares — System Installer
|
||||
Name[es]=Instalar Sistema
|
||||
Icon[es]=calamares
|
||||
GenericName[es]=Instalador del Sistema
|
||||
Comment[es]=Calamares — Instalador del Sistema
|
||||
Name[et]=Paigalda süsteem
|
||||
Icon[et]=calamares
|
||||
GenericName[et]=Süsteemipaigaldaja
|
||||
Comment[et]=Calamares — süsteemipaigaldaja
|
||||
Name[eu]=Sistema instalatu
|
||||
Icon[eu]=calamares
|
||||
GenericName[eu]=Sistema instalatzailea
|
||||
Comment[eu]=Calamares - sistema instalatzailea
|
||||
Name[es_PR]=Instalar el sistema
|
||||
Name[fr]=Installer le système
|
||||
Icon[fr]=calamares
|
||||
GenericName[fr]=Installateur système
|
||||
Comment[fr]=Calamares - Installateur système
|
||||
Name[gl]=Instalación do Sistema
|
||||
Icon[gl]=calamares
|
||||
GenericName[gl]=Instalador de sistemas
|
||||
Comment[gl]=Calamares — Instalador de sistemas
|
||||
Name[he]=התקנת מערכת
|
||||
Icon[he]=calamares
|
||||
GenericName[he]=אשף התקנה
|
||||
Comment[he]=Calamares - אשף התקנה
|
||||
Name[hi]=सिस्टम इंस्टॉल करें
|
||||
Icon[hi]=calamares
|
||||
GenericName[hi]=सिस्टम इंस्टॉलर
|
||||
Comment[hi]=Calamares — सिस्टम इंस्टॉलर
|
||||
Name[hr]=Instaliraj sustav
|
||||
Icon[hr]=calamares
|
||||
GenericName[hr]=Instalacija sustava
|
||||
Comment[hr]=Calamares — Instalacija sustava
|
||||
Name[hu]=Rendszer telepítése
|
||||
Icon[hu]=calamares
|
||||
GenericName[hu]=Rendszertelepítő
|
||||
Comment[hu]=Calamares – Rendszertelepítő
|
||||
Name[id]=Instal Sistem
|
||||
Icon[id]=calamares
|
||||
GenericName[id]=Pemasang
|
||||
Comment[id]=Calamares — Pemasang Sistem
|
||||
Name[is]=Setja upp kerfið
|
||||
Icon[is]=calamares
|
||||
GenericName[is]=Kerfis uppsetning
|
||||
Comment[is]=Calamares — Kerfis uppsetning
|
||||
Name[cs_CZ]=Nainstalovat systém
|
||||
Icon[cs_CZ]=calamares
|
||||
GenericName[cs_CZ]=Instalátor systému
|
||||
Comment[cs_CZ]=Calamares – instalátor operačních systémů
|
||||
Name[ja]=システムをインストール
|
||||
Icon[ja]=calamares
|
||||
GenericName[ja]=システムインストーラー
|
||||
Comment[ja]=Calamares — システムインストーラー
|
||||
Name[ko]=시스템 설치
|
||||
Icon[ko]=깔라마레스 (Calamares)
|
||||
GenericName[ko]=시스템 설치 관리자
|
||||
Comment[ko]=깔라마레스 (Calamares) — 시스템 설치 관리자
|
||||
Name[lt]=Įdiegti Sistemą
|
||||
Icon[lt]=calamares
|
||||
GenericName[lt]=Sistemos diegimas į kompiuterį
|
||||
Comment[lt]=Calamares — Sistemos diegimo programa
|
||||
Name[it_IT]=Installa il sistema
|
||||
Icon[it_IT]=calamares
|
||||
GenericName[it_IT]=Programma d'installazione del sistema
|
||||
Comment[it_IT]=Calamares — Programma d'installazione del sistema
|
||||
Name[mk]=Инсталирај го системот
|
||||
Icon[mk]=calamares
|
||||
GenericName[mk]=Системен Инсталер
|
||||
Comment[mk]=Calamares - Системен Инсталер
|
||||
Name[ml]=സിസ്റ്റം ഇൻസ്റ്റാൾ ചെയ്യുക
|
||||
Icon[ml]=കലാമാരേസ്
|
||||
GenericName[ml]=സിസ്റ്റം ഇൻസ്റ്റാളർ
|
||||
Comment[ml]=കലാമാരേസ് - സിസ്റ്റം ഇൻസ്റ്റാളർ
|
||||
Name[nb]=Installer System
|
||||
Icon[nb]=calamares
|
||||
GenericName[nb]=Systeminstallatør
|
||||
Comment[nb]=Calamares-systeminstallatør
|
||||
Name[nl]=Installeer systeem
|
||||
Icon[nl]=calamares
|
||||
GenericName[nl]=Installatieprogramma
|
||||
Comment[nl]=Calamares — Installatieprogramma
|
||||
Name[pl]=Zainstaluj system
|
||||
Icon[pl]=calamares
|
||||
GenericName[pl]=Instalator systemu
|
||||
Comment[pl]=Calamares — Instalator systemu
|
||||
Name[pt_BR]=Sistema de Instalação
|
||||
Icon[pt_BR]=calamares
|
||||
GenericName[pt_BR]=Instalador de Sistema
|
||||
Comment[pt_BR]=Calamares — Instalador de Sistema
|
||||
Name[ro]=Instalează sistemul
|
||||
Icon[ro]=calamares
|
||||
GenericName[ro]=Instalator de sistem
|
||||
Comment[ro]=Calamares — Instalator de sistem
|
||||
Name[ru]=Установить систему
|
||||
Icon[ru]=calamares
|
||||
GenericName[ru]=Установщик системы
|
||||
Comment[ru]=Calamares - Установщик системы
|
||||
Name[sk]=Inštalovať systém
|
||||
Icon[sk]=calamares
|
||||
GenericName[sk]=Inštalátor systému
|
||||
Comment[sk]=Calamares — Inštalátor systému
|
||||
Name[sl]=Namesti sistem
|
||||
Name[sq]=Instalo Sistemin
|
||||
Icon[sq]=calamares
|
||||
GenericName[sq]=Instalues Sistemi
|
||||
Comment[sq]=Calamares — Instalues Sistemi
|
||||
Name[fi_FI]=Asenna Järjestelmä
|
||||
Icon[fi_FI]=calamares
|
||||
GenericName[fi_FI]=Järjestelmän Asennusohjelma
|
||||
Comment[fi_FI]=Calamares — Järjestelmän Asentaja
|
||||
Name[sr@latin]=Instaliraj sistem
|
||||
Name[sr]=Инсталирај систем
|
||||
Icon[sr]=calamares
|
||||
GenericName[sr]=Инсталатер система
|
||||
Comment[sr]=Каламарес — инсталатер система
|
||||
Name[sv]=Installera system
|
||||
Icon[sv]=calamares
|
||||
GenericName[sv]=Systeminstallerare
|
||||
Comment[sv]=Calamares — Systeminstallerare
|
||||
Name[th]=ติดตั้งระบบ
|
||||
Name[uk]=Встановити Систему
|
||||
Icon[uk]=calamares
|
||||
GenericName[uk]=Встановлювач системи
|
||||
Comment[uk]=Calamares - Встановлювач системи
|
||||
Name[zh_CN]=安装系统
|
||||
Icon[zh_CN]=calamares
|
||||
GenericName[zh_CN]=系统安装程序
|
||||
Comment[zh_CN]=Calamares — 系统安装程序
|
||||
Name[zh_TW]=安裝系統
|
||||
Icon[zh_TW]=calamares
|
||||
GenericName[zh_TW]=系統安裝程式
|
||||
Comment[zh_TW]=Calamares ── 系統安裝程式
|
||||
Name[ast]=Instalar el sistema
|
||||
Icon[ast]=calamares
|
||||
GenericName[ast]=Instalador del sistema
|
||||
Comment[ast]=Calamares — Instalador del sistema
|
||||
Name[eo]=Instali Sistemo
|
||||
Icon[eo]=calamares
|
||||
GenericName[eo]=Sistema Instalilo
|
||||
Comment[eo]=Calamares — Sistema Instalilo
|
||||
Name[ne_NP]=सिस्टम इन्स्टल गर्नुहोस्
|
||||
Icon[ne_NP]=Calamares
|
||||
GenericName[ne_NP]=सिस्टम इन्स्टलर
|
||||
Comment[ne_NP]=Calamares - सिस्टम इन्स्टलर
|
||||
Name[es_MX]=Instalar el Sistema
|
||||
Icon[es_MX]=calamares
|
||||
GenericName[es_MX]=Instalador del sistema
|
||||
Comment[es_MX]=Calamares - Instalador del sistema
|
||||
Name[pt_PT]=Instalar Sistema
|
||||
Icon[pt_PT]=calamares
|
||||
GenericName[pt_PT]=Instalador de Sistema
|
||||
Comment[pt_PT]=Calamares - Instalador de Sistema
|
||||
Name[tr_TR]=Sistemi Yükle
|
||||
Icon[tr_TR]=calamares
|
||||
GenericName[tr_TR]=Sistem Yükleyici
|
||||
Comment[tr_TR]=Calamares — Sistem Yükleyici
|
@@ -1,2 +1,3 @@
|
||||
QT_QPA_PLATFORMTHEME=gtk2
|
||||
QT_STYLE_OVERRIDE=gtk
|
||||
QTWEBENGINE_CHROMIUM_FLAGS="-blink-settings=darkModeEnabled=true -enable-features=OverlayScrollbar,OverlayScrollbarFlashAfterAnyScrollUpdate,OverlayScrollbarFlashWhenMouseEnter"
|
||||
|
@@ -1 +1,2 @@
|
||||
127.0.0.1 localhost artix
|
||||
127.0.0.1 localhost
|
||||
::1 localhost
|
||||
|
@@ -33,6 +33,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@@ -86,6 +87,8 @@ zsh
|
||||
alsa-firmware
|
||||
powertop
|
||||
inxi
|
||||
modemmanager
|
||||
usb_modeswitch
|
||||
|
||||
@openrc alsa-utils-openrc
|
||||
@openrc avahi-openrc
|
||||
@@ -160,8 +163,8 @@ pacman-contrib
|
||||
hddtemp
|
||||
|
||||
# That hated other
|
||||
wine-mono
|
||||
wine-gecko
|
||||
wine
|
||||
winetricks
|
||||
|
||||
# MATE
|
||||
@@ -217,7 +220,6 @@ ffmpegthumbnailer
|
||||
ffmpegthumbs
|
||||
raw-thumbnailer
|
||||
qt5-imageformats
|
||||
gvfs-mtp
|
||||
youtube-dl
|
||||
pulseaudio-alsa
|
||||
p7zip
|
||||
@@ -252,7 +254,7 @@ breeze-icons
|
||||
|
||||
# Network management
|
||||
connman-gtk
|
||||
modemmanager
|
||||
modem-manager-gui
|
||||
|
||||
# GTK pkgs
|
||||
geany-plugins
|
||||
@@ -261,7 +263,6 @@ handbrake
|
||||
audacity
|
||||
gimp
|
||||
inkscape
|
||||
openshot
|
||||
hexchat
|
||||
gufw
|
||||
meld
|
||||
@@ -272,17 +273,15 @@ brasero
|
||||
pluma
|
||||
thunderbird
|
||||
claws-mail
|
||||
lollypop
|
||||
midori
|
||||
leafpad
|
||||
|
||||
# other stuff
|
||||
qt5-imageformats
|
||||
gtk-engines
|
||||
accountsservice
|
||||
raw-thumbnailer
|
||||
qt5-imageformats
|
||||
bluez-utils
|
||||
yaourtix
|
||||
trizen
|
||||
hunspell-en_US
|
||||
picom
|
||||
|
||||
@@ -290,6 +289,9 @@ picom
|
||||
kdenlive
|
||||
digikam
|
||||
smb4k
|
||||
clementine
|
||||
projectm-pulseaudio
|
||||
projectm-sdl
|
||||
|
||||
# Uniform QT/GTK look
|
||||
kvantum-qt5
|
||||
@@ -300,6 +302,7 @@ vertex-themes
|
||||
oxygen
|
||||
|
||||
# KIO is still lacking
|
||||
gvfs-mtp
|
||||
gvfs-smb
|
||||
gvfs-afc
|
||||
gvfs-google
|
||||
@@ -309,3 +312,4 @@ virtualbox-guest-utils
|
||||
mc
|
||||
screen
|
||||
tmux
|
||||
hdparm
|
||||
|
@@ -1 +0,0 @@
|
||||
../../../community/live-overlay/etc/rc.conf
|
@@ -1 +0,0 @@
|
||||
../../../community/root-overlay/etc/rc.local
|
@@ -33,6 +33,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@@ -86,6 +87,8 @@ zsh
|
||||
alsa-firmware
|
||||
powertop
|
||||
inxi
|
||||
modemmanager
|
||||
usb_modeswitch
|
||||
|
||||
@openrc alsa-utils-openrc
|
||||
@openrc avahi-openrc
|
||||
@@ -146,7 +149,7 @@ artix-dark-theme
|
||||
artix-branding-base
|
||||
artix-community-presets
|
||||
xcursor-premium
|
||||
artix-sddm-theme
|
||||
sddm-theme-artix
|
||||
|
||||
# Community goodies
|
||||
base-devel
|
||||
@@ -161,21 +164,17 @@ pacman-contrib
|
||||
hddtemp
|
||||
|
||||
# That hated other
|
||||
wine-mono
|
||||
wine-gecko
|
||||
wine
|
||||
winetricks
|
||||
|
||||
# KDE Plasma
|
||||
plasma
|
||||
kf5
|
||||
kdebase
|
||||
kdeutils
|
||||
kde-applications
|
||||
kdenetwork
|
||||
kde-system
|
||||
kde-network
|
||||
kde-utilities
|
||||
kdepim
|
||||
kdegraphics
|
||||
kdeutils
|
||||
kdemultimedia
|
||||
|
||||
# LXQT
|
||||
lxqt
|
||||
@@ -192,11 +191,11 @@ firefox-noscript
|
||||
firefox-ublock-origin
|
||||
libreoffice-fresh
|
||||
mpv
|
||||
youtube-dl
|
||||
ffmpegthumbnailer
|
||||
#ffmpegthumbs # included in kdemultimedia
|
||||
ffmpegthumbs
|
||||
raw-thumbnailer
|
||||
qt5-imageformats
|
||||
youtube-dl
|
||||
pulseaudio-alsa
|
||||
p7zip
|
||||
unrar
|
||||
@@ -230,6 +229,7 @@ breeze-icons
|
||||
|
||||
# Network management
|
||||
network-manager-applet
|
||||
modem-manager-gui
|
||||
|
||||
# GTK pkgs
|
||||
geany-plugins
|
||||
@@ -238,25 +238,61 @@ handbrake
|
||||
audacity
|
||||
gimp
|
||||
inkscape
|
||||
openshot
|
||||
hexchat
|
||||
gufw
|
||||
meld
|
||||
|
||||
# other stuff
|
||||
qt5-imageformats
|
||||
gtk-engines
|
||||
accountsservice
|
||||
bluez-utils
|
||||
yaourtix
|
||||
trizen
|
||||
hunspell-en_US
|
||||
picom
|
||||
|
||||
# Qt pkgs
|
||||
konversation
|
||||
falkon
|
||||
kdenlive
|
||||
digikam
|
||||
smb4k
|
||||
clementine
|
||||
projectm-pulseaudio
|
||||
projectm-sdl
|
||||
konversation
|
||||
falkon
|
||||
ark
|
||||
dolphin-plugins
|
||||
ffmpegthumbs
|
||||
filelight
|
||||
filelight
|
||||
k3b
|
||||
kaddressbook
|
||||
kamera
|
||||
kamoso
|
||||
kcalc
|
||||
kcharselect
|
||||
kcolorchooser
|
||||
kdf
|
||||
kdegraphics-thumbnailers
|
||||
kdesdk-thumbnailers
|
||||
kate
|
||||
kdialog
|
||||
keditbookmarks
|
||||
kfind
|
||||
kgpg
|
||||
kmix
|
||||
konqueror
|
||||
konsole
|
||||
kruler
|
||||
ktimer
|
||||
kwalletmanager
|
||||
kwrite
|
||||
print-manager
|
||||
gwenview
|
||||
spectacle
|
||||
svgpart
|
||||
sweeper
|
||||
okular
|
||||
|
||||
# Uniform QT/GTK look
|
||||
kvantum-qt5
|
||||
@@ -277,3 +313,4 @@ virtualbox-guest-utils
|
||||
mc
|
||||
screen
|
||||
tmux
|
||||
hdparm
|
||||
|
@@ -1 +0,0 @@
|
||||
../../../community/live-overlay/etc/rc.conf
|
129
community-qt/live-overlay/etc/sddm.conf
Normal file
129
community-qt/live-overlay/etc/sddm.conf
Normal file
@@ -0,0 +1,129 @@
|
||||
[Autologin]
|
||||
# Whether sddm should automatically log back into sessions when they exit
|
||||
Relogin=false
|
||||
|
||||
# Name of session file for autologin session (if empty try last logged in)
|
||||
Session=plasma.desktop
|
||||
|
||||
# Username for autologin session
|
||||
User=
|
||||
|
||||
|
||||
[General]
|
||||
# Halt command
|
||||
HaltCommand=/usr/bin/loginctl poweroff
|
||||
|
||||
# Input method module
|
||||
InputMethod=qtvirtualkeyboard
|
||||
|
||||
# Initial NumLock state. Can be on, off or none.
|
||||
# If property is set to none, numlock won't be changed
|
||||
# NOTE: Currently ignored if autologin is enabled.
|
||||
Numlock=none
|
||||
|
||||
# Reboot command
|
||||
RebootCommand=/usr/bin/loginctl reboot
|
||||
|
||||
|
||||
[Theme]
|
||||
# Current theme name
|
||||
Current=artix
|
||||
|
||||
# Cursor theme used in the greeter
|
||||
CursorTheme=Premium
|
||||
|
||||
# Number of users to use as threshold
|
||||
# above which avatars are disabled
|
||||
# unless explicitly enabled with EnableAvatars
|
||||
DisableAvatarsThreshold=7
|
||||
|
||||
# Enable display of custom user avatars
|
||||
EnableAvatars=true
|
||||
|
||||
# Global directory for user avatars
|
||||
# The files should be named <username>.face.icon
|
||||
FacesDir=/usr/share/sddm/faces
|
||||
|
||||
# Theme directory path
|
||||
ThemeDir=/usr/share/sddm/themes
|
||||
|
||||
|
||||
[Users]
|
||||
# Default $PATH for logged in users
|
||||
DefaultPath=/usr/local/bin:/usr/bin:/bin
|
||||
|
||||
# Comma-separated list of shells.
|
||||
# Users with these shells as their default won't be listed
|
||||
HideShells=
|
||||
|
||||
# Comma-separated list of users that should not be listed
|
||||
HideUsers=
|
||||
|
||||
# Maximum user id for displayed users
|
||||
MaximumUid=60000
|
||||
|
||||
# Minimum user id for displayed users
|
||||
MinimumUid=1000
|
||||
|
||||
# Remember the session of the last successfully logged in user
|
||||
RememberLastSession=true
|
||||
|
||||
# Remember the last successfully logged in user
|
||||
RememberLastUser=true
|
||||
|
||||
# When logging in as the same user twice, restore the original session, rather than create a new one
|
||||
ReuseSession=false
|
||||
|
||||
|
||||
[Wayland]
|
||||
# Enable Qt's automatic high-DPI scaling
|
||||
EnableHiDPI=false
|
||||
|
||||
# Path to a script to execute when starting the desktop session
|
||||
SessionCommand=/usr/share/sddm/scripts/wayland-session
|
||||
|
||||
# Directory containing available Wayland sessions
|
||||
SessionDir=/usr/share/wayland-sessions
|
||||
|
||||
# Path to the user session log file
|
||||
SessionLogFile=.local/share/sddm/wayland-session.log
|
||||
|
||||
|
||||
[X11]
|
||||
# Path to a script to execute when starting the display server
|
||||
DisplayCommand=/usr/share/sddm/scripts/Xsetup
|
||||
|
||||
# Path to a script to execute when stopping the display server
|
||||
DisplayStopCommand=/usr/share/sddm/scripts/Xstop
|
||||
|
||||
# Enable Qt's automatic high-DPI scaling
|
||||
EnableHiDPI=false
|
||||
|
||||
# The lowest virtual terminal number that will be used.
|
||||
MinimumVT=7
|
||||
|
||||
# Arguments passed to the X server invocation
|
||||
ServerArguments=-nolisten tcp
|
||||
|
||||
# Path to X server binary
|
||||
ServerPath=/usr/bin/X
|
||||
|
||||
# Path to a script to execute when starting the desktop session
|
||||
SessionCommand=/usr/share/sddm/scripts/Xsession
|
||||
|
||||
# Directory containing available X sessions
|
||||
SessionDir=/usr/share/xsessions
|
||||
|
||||
# Path to the user session log file
|
||||
SessionLogFile=.local/share/sddm/xorg-session.log
|
||||
|
||||
# Path to the Xauthority file
|
||||
UserAuthFile=.Xauthority
|
||||
|
||||
# Path to xauth binary
|
||||
XauthPath=/usr/bin/xauth
|
||||
|
||||
# Path to Xephyr binary
|
||||
XephyrPath=/usr/bin/Xephyr
|
||||
|
||||
|
@@ -1,2 +1,3 @@
|
||||
#QT_QPA_PLATFORMTHEME=gtk2
|
||||
QT_STYLE_OVERRIDE=gtk
|
||||
QTWEBENGINE_CHROMIUM_FLAGS="-blink-settings=darkModeEnabled=true -enable-features=OverlayScrollbar,OverlayScrollbarFlashAfterAnyScrollUpdate,OverlayScrollbarFlashWhenMouseEnter"
|
||||
|
@@ -1 +0,0 @@
|
||||
../../../community/root-overlay/etc/rc.local
|
@@ -1,129 +0,0 @@
|
||||
[Autologin]
|
||||
# Whether sddm should automatically log back into sessions when they exit
|
||||
Relogin=false
|
||||
|
||||
# Name of session file for autologin session (if empty try last logged in)
|
||||
Session=plasma.desktop
|
||||
|
||||
# Username for autologin session
|
||||
User=
|
||||
|
||||
|
||||
[General]
|
||||
# Halt command
|
||||
HaltCommand=/usr/bin/loginctl poweroff
|
||||
|
||||
# Input method module
|
||||
InputMethod=qtvirtualkeyboard
|
||||
|
||||
# Initial NumLock state. Can be on, off or none.
|
||||
# If property is set to none, numlock won't be changed
|
||||
# NOTE: Currently ignored if autologin is enabled.
|
||||
Numlock=none
|
||||
|
||||
# Reboot command
|
||||
RebootCommand=/usr/bin/loginctl reboot
|
||||
|
||||
|
||||
[Theme]
|
||||
# Current theme name
|
||||
Current=artix
|
||||
|
||||
# Cursor theme used in the greeter
|
||||
CursorTheme=Premium
|
||||
|
||||
# Number of users to use as threshold
|
||||
# above which avatars are disabled
|
||||
# unless explicitly enabled with EnableAvatars
|
||||
DisableAvatarsThreshold=7
|
||||
|
||||
# Enable display of custom user avatars
|
||||
EnableAvatars=true
|
||||
|
||||
# Global directory for user avatars
|
||||
# The files should be named <username>.face.icon
|
||||
FacesDir=/usr/share/sddm/faces
|
||||
|
||||
# Theme directory path
|
||||
ThemeDir=/usr/share/sddm/themes
|
||||
|
||||
|
||||
[Users]
|
||||
# Default $PATH for logged in users
|
||||
DefaultPath=/usr/local/bin:/usr/bin:/bin
|
||||
|
||||
# Comma-separated list of shells.
|
||||
# Users with these shells as their default won't be listed
|
||||
HideShells=
|
||||
|
||||
# Comma-separated list of users that should not be listed
|
||||
HideUsers=
|
||||
|
||||
# Maximum user id for displayed users
|
||||
MaximumUid=60000
|
||||
|
||||
# Minimum user id for displayed users
|
||||
MinimumUid=1000
|
||||
|
||||
# Remember the session of the last successfully logged in user
|
||||
RememberLastSession=true
|
||||
|
||||
# Remember the last successfully logged in user
|
||||
RememberLastUser=true
|
||||
|
||||
# When logging in as the same user twice, restore the original session, rather than create a new one
|
||||
ReuseSession=false
|
||||
|
||||
|
||||
[Wayland]
|
||||
# Enable Qt's automatic high-DPI scaling
|
||||
EnableHiDPI=false
|
||||
|
||||
# Path to a script to execute when starting the desktop session
|
||||
SessionCommand=/usr/share/sddm/scripts/wayland-session
|
||||
|
||||
# Directory containing available Wayland sessions
|
||||
SessionDir=/usr/share/wayland-sessions
|
||||
|
||||
# Path to the user session log file
|
||||
SessionLogFile=.local/share/sddm/wayland-session.log
|
||||
|
||||
|
||||
[X11]
|
||||
# Path to a script to execute when starting the display server
|
||||
DisplayCommand=/usr/share/sddm/scripts/Xsetup
|
||||
|
||||
# Path to a script to execute when stopping the display server
|
||||
DisplayStopCommand=/usr/share/sddm/scripts/Xstop
|
||||
|
||||
# Enable Qt's automatic high-DPI scaling
|
||||
EnableHiDPI=false
|
||||
|
||||
# The lowest virtual terminal number that will be used.
|
||||
MinimumVT=7
|
||||
|
||||
# Arguments passed to the X server invocation
|
||||
ServerArguments=-nolisten tcp
|
||||
|
||||
# Path to X server binary
|
||||
ServerPath=/usr/bin/X
|
||||
|
||||
# Path to a script to execute when starting the desktop session
|
||||
SessionCommand=/usr/share/sddm/scripts/Xsession
|
||||
|
||||
# Directory containing available X sessions
|
||||
SessionDir=/usr/share/xsessions
|
||||
|
||||
# Path to the user session log file
|
||||
SessionLogFile=.local/share/sddm/xorg-session.log
|
||||
|
||||
# Path to the Xauthority file
|
||||
UserAuthFile=.Xauthority
|
||||
|
||||
# Path to xauth binary
|
||||
XauthPath=/usr/bin/xauth
|
||||
|
||||
# Path to Xephyr binary
|
||||
XephyrPath=/usr/bin/Xephyr
|
||||
|
||||
|
1
community-qt/root-overlay/etc/sddm.conf
Symbolic link
1
community-qt/root-overlay/etc/sddm.conf
Symbolic link
@@ -0,0 +1 @@
|
||||
../../live-overlay/etc/sddm.conf
|
@@ -1 +0,0 @@
|
||||
../../../../community/root-overlay/usr/share/sddm
|
Binary file not shown.
After Width: | Height: | Size: 222 KiB |
Binary file not shown.
After Width: | Height: | Size: 130 KiB |
@@ -1,24 +1,33 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Use the DNA helix in community ISOs
|
||||
sed -i 's/GradientGlowBlue/Artix_dna_spiral_dark/' \
|
||||
/etc/dconf/db/mate.d/theme \
|
||||
/usr/share/glib-2.0/schemas/99_cinnamon.gschema.override \
|
||||
ln -sf /usr/share/backgrounds/Artix_dna_spiral_dark.jpg /usr/share/wallpapers/Artix/contents/images/1920x1080.jpg
|
||||
sed -i 's/GradientGlowBlue/Artix_dna_spiral_dark/g' \
|
||||
/etc/skel/.config/pcmanfm/LXDE/desktop-items-0.conf \
|
||||
/etc/skel/.config/pcmanfm-qt/lxqt/settings.conf \
|
||||
/etc/skel/.config/pcmanfm-qt/default/settings.conf \
|
||||
/etc/skel/.config/kscreenlockerrc \
|
||||
/etc/skel/.config/plasmarc 2>/dev/null
|
||||
/etc/skel/.config/mate/backgrounds.xml \
|
||||
/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml \
|
||||
/etc/skel/.config/plasmarc \
|
||||
/etc/skel/.config/plasma-org.kde.plasma.desktop-appletsrc \
|
||||
/etc/dconf/db/mate.d/theme \
|
||||
/usr/share/plasma/look-and-feel/artix.dark/contents/layouts/org.kde.plasma.desktop-layout.js \
|
||||
/etc/schemas/99_gnome.gschema.override \
|
||||
/etc/xdg/kscreenlockerrc \
|
||||
/etc/xdg/plasmarc \
|
||||
/usr/share/glib-2.0/schemas/99_cinnamon.gschema.override 2>/dev/null
|
||||
|
||||
dconf update &
|
||||
dconf update
|
||||
|
||||
# Also in live
|
||||
for USER in /home/*; do
|
||||
sed -i 's/GradientGlowBlue/Artix_dna_spiral_dark/' \
|
||||
sed -i 's/GradientGlowBlue/Artix_dna_spiral_dark/g' \
|
||||
$USER/.config/pcmanfm/LXDE/desktop-items-0.conf \
|
||||
$USER/.config/pcmanfm-qt/lxqt/settings.conf \
|
||||
$USER/.config/pcmanfm-qt/default/settings.conf \
|
||||
$USER/.config/kscreenlockerrc \
|
||||
$USER/.config/plasma-org.kde.plasma.desktop-appletsrc \
|
||||
$USER/.config/plasmarc 2>/dev/null
|
||||
done
|
||||
|
||||
|
@@ -1,3 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
[ -x /etc/rc.local ] && /etc/rc.local
|
@@ -1,3 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
[ -x /etc/rc.local.stop ] && /etc/rc.local.stop
|
@@ -4,11 +4,11 @@
|
||||
mv -f /etc/mkinitcpio.conf.mod /etc/mkinitcpio.conf 2>/dev/null
|
||||
|
||||
# Remove ecnryption-related stuff if unneeded from mkinitcpio.conf, default/grub and grub.cfg
|
||||
if [ ! -e /crypto_keyfile.bin ]; then
|
||||
sed -i 's|/crypto_keyfile.bin||' /etc/mkinitcpio.conf* 2>/dev/null
|
||||
sed -i 's|encrypt||' /etc/mkinitcpio.conf* 2>/dev/null
|
||||
sed -i 's|cryptkey=rootfs:/crypto_keyfile.bin||' /etc/default/grub /boot/grub/grub.cfg 2>/dev/null
|
||||
fi
|
||||
#if [ ! -e /crypto_keyfile.bin ]; then
|
||||
# sed -i 's|/crypto_keyfile.bin||' /etc/mkinitcpio.conf* 2>/dev/null
|
||||
# sed -i 's|encrypt||' /etc/mkinitcpio.conf* 2>/dev/null
|
||||
# sed -i 's|cryptkey=rootfs:/crypto_keyfile.bin||' /etc/default/grub /boot/grub/grub.cfg 2>/dev/null
|
||||
#fi
|
||||
|
||||
# Run once and disappear
|
||||
rm -f $0
|
||||
|
@@ -95,6 +95,11 @@ Include = /etc/pacman.d/mirrorlist
|
||||
[lib32]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# [universe] contains packages not in mainstream Artix or Arch repos,
|
||||
# maintained by individual Artix devs
|
||||
[universe]
|
||||
Server = https://universe.artixlinux.org/$arch
|
||||
|
||||
# An example of a custom package repository. See the pacman manpage for
|
||||
# tips on creating your own repositories.
|
||||
#[custom]
|
||||
|
@@ -1,205 +0,0 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Name=Install Artix
|
||||
GenericName=System Installer
|
||||
Keywords=calamares;system;installer;
|
||||
TryExec=calamares
|
||||
Exec=pkexec env DISPLAY=:0 XAUTHORITY=/home/artix/.Xauthority QT_QPA_PLATFORMTHEME=gtk2 calamares
|
||||
Comment=Calamares — System Installer
|
||||
Icon=artixlinux-logo
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Categories=Qt;System;
|
||||
X-AppStream-Ignore=true
|
||||
|
||||
Name[ar]=تثبيت النظام
|
||||
Icon[ar]=كالامارس
|
||||
GenericName[ar]=مثبت النظام
|
||||
Comment[ar]=كالامارس - مثبت النظام
|
||||
Name[be]=Усталяваць сістэму
|
||||
Icon[be]=calamares
|
||||
GenericName[be]=Усталёўшчык сістэмы
|
||||
Comment[be]=Calamares — усталёўшчык сістэмы
|
||||
Name[bg]=Инсталирай системата
|
||||
Icon[bg]=calamares
|
||||
GenericName[bg]=Системен Инсталатор
|
||||
Comment[bg]=Calamares — Системен Инсталатор
|
||||
Name[ca]=Instal·la el sistema
|
||||
Icon[ca]=calamares
|
||||
GenericName[ca]=Instal·lador de sistema
|
||||
Comment[ca]=Calamares — Instal·lador de sistema
|
||||
Name[da]=Installér system
|
||||
Icon[da]=calamares
|
||||
GenericName[da]=Systeminstallationsprogram
|
||||
Comment[da]=Calamares — Systeminstallationsprogram
|
||||
Name[de]=System installieren
|
||||
Icon[de]=calamares
|
||||
GenericName[de]=Installation des Betriebssystems
|
||||
Comment[de]=Calamares - Installation des Betriebssystems
|
||||
Name[el]=Εγκατάσταση συστήματος
|
||||
Icon[el]=calamares
|
||||
GenericName[el]=Εγκατάσταση συστήματος
|
||||
Comment[el]=Calamares — Εγκατάσταση συστήματος
|
||||
Name[en_GB]=Install System
|
||||
Icon[en_GB]=calamares
|
||||
GenericName[en_GB]=System Installer
|
||||
Comment[en_GB]=Calamares — System Installer
|
||||
Name[es]=Instalar Sistema
|
||||
Icon[es]=calamares
|
||||
GenericName[es]=Instalador del Sistema
|
||||
Comment[es]=Calamares — Instalador del Sistema
|
||||
Name[et]=Paigalda süsteem
|
||||
Icon[et]=calamares
|
||||
GenericName[et]=Süsteemipaigaldaja
|
||||
Comment[et]=Calamares — süsteemipaigaldaja
|
||||
Name[eu]=Sistema instalatu
|
||||
Icon[eu]=calamares
|
||||
GenericName[eu]=Sistema instalatzailea
|
||||
Comment[eu]=Calamares - sistema instalatzailea
|
||||
Name[es_PR]=Instalar el sistema
|
||||
Name[fr]=Installer le système
|
||||
Icon[fr]=calamares
|
||||
GenericName[fr]=Installateur système
|
||||
Comment[fr]=Calamares - Installateur système
|
||||
Name[gl]=Instalación do Sistema
|
||||
Icon[gl]=calamares
|
||||
GenericName[gl]=Instalador de sistemas
|
||||
Comment[gl]=Calamares — Instalador de sistemas
|
||||
Name[he]=התקנת מערכת
|
||||
Icon[he]=calamares
|
||||
GenericName[he]=אשף התקנה
|
||||
Comment[he]=Calamares - אשף התקנה
|
||||
Name[hi]=सिस्टम इंस्टॉल करें
|
||||
Icon[hi]=calamares
|
||||
GenericName[hi]=सिस्टम इंस्टॉलर
|
||||
Comment[hi]=Calamares — सिस्टम इंस्टॉलर
|
||||
Name[hr]=Instaliraj sustav
|
||||
Icon[hr]=calamares
|
||||
GenericName[hr]=Instalacija sustava
|
||||
Comment[hr]=Calamares — Instalacija sustava
|
||||
Name[hu]=Rendszer telepítése
|
||||
Icon[hu]=calamares
|
||||
GenericName[hu]=Rendszertelepítő
|
||||
Comment[hu]=Calamares – Rendszertelepítő
|
||||
Name[id]=Instal Sistem
|
||||
Icon[id]=calamares
|
||||
GenericName[id]=Pemasang
|
||||
Comment[id]=Calamares — Pemasang Sistem
|
||||
Name[is]=Setja upp kerfið
|
||||
Icon[is]=calamares
|
||||
GenericName[is]=Kerfis uppsetning
|
||||
Comment[is]=Calamares — Kerfis uppsetning
|
||||
Name[cs_CZ]=Nainstalovat systém
|
||||
Icon[cs_CZ]=calamares
|
||||
GenericName[cs_CZ]=Instalátor systému
|
||||
Comment[cs_CZ]=Calamares – instalátor operačních systémů
|
||||
Name[ja]=システムをインストール
|
||||
Icon[ja]=calamares
|
||||
GenericName[ja]=システムインストーラー
|
||||
Comment[ja]=Calamares — システムインストーラー
|
||||
Name[ko]=시스템 설치
|
||||
Icon[ko]=깔라마레스 (Calamares)
|
||||
GenericName[ko]=시스템 설치 관리자
|
||||
Comment[ko]=깔라마레스 (Calamares) — 시스템 설치 관리자
|
||||
Name[lt]=Įdiegti Sistemą
|
||||
Icon[lt]=calamares
|
||||
GenericName[lt]=Sistemos diegimas į kompiuterį
|
||||
Comment[lt]=Calamares — Sistemos diegimo programa
|
||||
Name[it_IT]=Installa il sistema
|
||||
Icon[it_IT]=calamares
|
||||
GenericName[it_IT]=Programma d'installazione del sistema
|
||||
Comment[it_IT]=Calamares — Programma d'installazione del sistema
|
||||
Name[mk]=Инсталирај го системот
|
||||
Icon[mk]=calamares
|
||||
GenericName[mk]=Системен Инсталер
|
||||
Comment[mk]=Calamares - Системен Инсталер
|
||||
Name[ml]=സിസ്റ്റം ഇൻസ്റ്റാൾ ചെയ്യുക
|
||||
Icon[ml]=കലാമാരേസ്
|
||||
GenericName[ml]=സിസ്റ്റം ഇൻസ്റ്റാളർ
|
||||
Comment[ml]=കലാമാരേസ് - സിസ്റ്റം ഇൻസ്റ്റാളർ
|
||||
Name[nb]=Installer System
|
||||
Icon[nb]=calamares
|
||||
GenericName[nb]=Systeminstallatør
|
||||
Comment[nb]=Calamares-systeminstallatør
|
||||
Name[nl]=Installeer systeem
|
||||
Icon[nl]=calamares
|
||||
GenericName[nl]=Installatieprogramma
|
||||
Comment[nl]=Calamares — Installatieprogramma
|
||||
Name[pl]=Zainstaluj system
|
||||
Icon[pl]=calamares
|
||||
GenericName[pl]=Instalator systemu
|
||||
Comment[pl]=Calamares — Instalator systemu
|
||||
Name[pt_BR]=Sistema de Instalação
|
||||
Icon[pt_BR]=calamares
|
||||
GenericName[pt_BR]=Instalador de Sistema
|
||||
Comment[pt_BR]=Calamares — Instalador de Sistema
|
||||
Name[ro]=Instalează sistemul
|
||||
Icon[ro]=calamares
|
||||
GenericName[ro]=Instalator de sistem
|
||||
Comment[ro]=Calamares — Instalator de sistem
|
||||
Name[ru]=Установить систему
|
||||
Icon[ru]=calamares
|
||||
GenericName[ru]=Установщик системы
|
||||
Comment[ru]=Calamares - Установщик системы
|
||||
Name[sk]=Inštalovať systém
|
||||
Icon[sk]=calamares
|
||||
GenericName[sk]=Inštalátor systému
|
||||
Comment[sk]=Calamares — Inštalátor systému
|
||||
Name[sl]=Namesti sistem
|
||||
Name[sq]=Instalo Sistemin
|
||||
Icon[sq]=calamares
|
||||
GenericName[sq]=Instalues Sistemi
|
||||
Comment[sq]=Calamares — Instalues Sistemi
|
||||
Name[fi_FI]=Asenna Järjestelmä
|
||||
Icon[fi_FI]=calamares
|
||||
GenericName[fi_FI]=Järjestelmän Asennusohjelma
|
||||
Comment[fi_FI]=Calamares — Järjestelmän Asentaja
|
||||
Name[sr@latin]=Instaliraj sistem
|
||||
Name[sr]=Инсталирај систем
|
||||
Icon[sr]=calamares
|
||||
GenericName[sr]=Инсталатер система
|
||||
Comment[sr]=Каламарес — инсталатер система
|
||||
Name[sv]=Installera system
|
||||
Icon[sv]=calamares
|
||||
GenericName[sv]=Systeminstallerare
|
||||
Comment[sv]=Calamares — Systeminstallerare
|
||||
Name[th]=ติดตั้งระบบ
|
||||
Name[uk]=Встановити Систему
|
||||
Icon[uk]=calamares
|
||||
GenericName[uk]=Встановлювач системи
|
||||
Comment[uk]=Calamares - Встановлювач системи
|
||||
Name[zh_CN]=安装系统
|
||||
Icon[zh_CN]=calamares
|
||||
GenericName[zh_CN]=系统安装程序
|
||||
Comment[zh_CN]=Calamares — 系统安装程序
|
||||
Name[zh_TW]=安裝系統
|
||||
Icon[zh_TW]=calamares
|
||||
GenericName[zh_TW]=系統安裝程式
|
||||
Comment[zh_TW]=Calamares ── 系統安裝程式
|
||||
Name[ast]=Instalar el sistema
|
||||
Icon[ast]=calamares
|
||||
GenericName[ast]=Instalador del sistema
|
||||
Comment[ast]=Calamares — Instalador del sistema
|
||||
Name[eo]=Instali Sistemo
|
||||
Icon[eo]=calamares
|
||||
GenericName[eo]=Sistema Instalilo
|
||||
Comment[eo]=Calamares — Sistema Instalilo
|
||||
Name[ne_NP]=सिस्टम इन्स्टल गर्नुहोस्
|
||||
Icon[ne_NP]=Calamares
|
||||
GenericName[ne_NP]=सिस्टम इन्स्टलर
|
||||
Comment[ne_NP]=Calamares - सिस्टम इन्स्टलर
|
||||
Name[es_MX]=Instalar el Sistema
|
||||
Icon[es_MX]=calamares
|
||||
GenericName[es_MX]=Instalador del sistema
|
||||
Comment[es_MX]=Calamares - Instalador del sistema
|
||||
Name[pt_PT]=Instalar Sistema
|
||||
Icon[pt_PT]=calamares
|
||||
GenericName[pt_PT]=Instalador de Sistema
|
||||
Comment[pt_PT]=Calamares - Instalador de Sistema
|
||||
Name[tr_TR]=Sistemi Yükle
|
||||
Icon[tr_TR]=calamares
|
||||
GenericName[tr_TR]=Sistem Yükleyici
|
||||
Comment[tr_TR]=Calamares — Sistem Yükleyici
|
@@ -1 +0,0 @@
|
||||
../../../live-overlay/etc/local.d/local.start
|
@@ -1 +0,0 @@
|
||||
../../../live-overlay/etc/local.d/local.stop
|
@@ -1 +0,0 @@
|
||||
../../live-overlay/etc/rc.conf
|
@@ -1,12 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
neofetch >| /etc/issue
|
||||
# Give login info in live environment
|
||||
live='/etc/issue.live'
|
||||
[[ -f $live ]] && { cat $live >> /etc/issue; sed -i '/live/d' /etc/rc.local; }
|
||||
rm -f $live &
|
||||
# /etc/local.d script execution in runit/s6
|
||||
[ -x /etc/local.d/0-process_local.d.start ] && /etc/local.d/0-process_local.d.start &
|
||||
|
||||
# Remove possible stale lockfile
|
||||
rm -f /var/lib/pacman/db.lck &
|
@@ -25,7 +25,7 @@ case $XDG_CURRENT_DESKTOP in
|
||||
;;
|
||||
MATE) [[ -f .hidden-mate ]] && ln -sf .hidden-mate .hidden
|
||||
;;
|
||||
LXDE) [[ -f .hidden-lxde ]] && ln -sf .hidden-lxde .hidden
|
||||
LXDE) rm -f org.kde.konversation.desktop
|
||||
;;
|
||||
LXQt) [[ -f .hidden-lxqt ]] && ln -sf .hidden-lxqt .hidden
|
||||
;;
|
||||
|
@@ -1,245 +0,0 @@
|
||||
import QtQuick 2.0
|
||||
import SddmComponents 2.0
|
||||
|
||||
Rectangle {
|
||||
id: container
|
||||
width: 640
|
||||
height: 480
|
||||
|
||||
LayoutMirroring.enabled: Qt.locale().textDirection == Qt.RightToLeft
|
||||
LayoutMirroring.childrenInherit: true
|
||||
|
||||
TextConstants { id: textConstants }
|
||||
|
||||
Connections {
|
||||
target: sddm
|
||||
|
||||
onLoginSucceeded: {
|
||||
errorMessage.color = "steelblue"
|
||||
errorMessage.text = textConstants.loginSucceeded
|
||||
}
|
||||
|
||||
onLoginFailed: {
|
||||
password.text = ""
|
||||
errorMessage.color = "red"
|
||||
errorMessage.text = textConstants.loginFailed
|
||||
}
|
||||
}
|
||||
|
||||
Background {
|
||||
anchors.fill: parent
|
||||
source: config.background
|
||||
fillMode: Image.PreserveAspectCrop
|
||||
onStatusChanged: {
|
||||
if (status == Image.Error && source != config.defaultBackground) {
|
||||
source = config.defaultBackground
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: "transparent"
|
||||
//visible: primaryScreen
|
||||
|
||||
Image {
|
||||
id: rectangle
|
||||
anchors.centerIn: parent
|
||||
width: Math.max(320, mainColumn.implicitWidth + 50)
|
||||
height: Math.max(320, mainColumn.implicitHeight + 50)
|
||||
|
||||
source: "rectangle.png"
|
||||
|
||||
Column {
|
||||
id: mainColumn
|
||||
anchors.centerIn: parent
|
||||
spacing: 12
|
||||
Text {
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
color: "black"
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
height: text.implicitHeight
|
||||
width: parent.width
|
||||
text: textConstants.welcomeText.arg(sddm.hostName)
|
||||
wrapMode: Text.WordWrap
|
||||
font.pixelSize: 24
|
||||
elide: Text.ElideRight
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
}
|
||||
|
||||
Text {
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
color: "black"
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
height: text.implicitHeight
|
||||
width: parent.width
|
||||
text: qsTr("Artix Linux")
|
||||
wrapMode: Text.WordWrap
|
||||
font.pixelSize: 14
|
||||
elide: Text.ElideRight
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
}
|
||||
|
||||
Column {
|
||||
width: parent.width
|
||||
spacing: 4
|
||||
Text {
|
||||
id: lblName
|
||||
width: parent.width
|
||||
text: textConstants.userName
|
||||
font.bold: true
|
||||
font.pixelSize: 12
|
||||
}
|
||||
|
||||
TextBox {
|
||||
id: name
|
||||
width: parent.width; height: 30
|
||||
text: userModel.lastUser
|
||||
font.pixelSize: 14
|
||||
|
||||
KeyNavigation.backtab: rebootButton; KeyNavigation.tab: password
|
||||
|
||||
Keys.onPressed: {
|
||||
if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
|
||||
sddm.login(name.text, password.text, session.index)
|
||||
event.accepted = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
width: parent.width
|
||||
spacing : 4
|
||||
Text {
|
||||
id: lblPassword
|
||||
width: parent.width
|
||||
text: textConstants.password
|
||||
font.bold: true
|
||||
font.pixelSize: 12
|
||||
}
|
||||
|
||||
PasswordBox {
|
||||
id: password
|
||||
width: parent.width; height: 30
|
||||
font.pixelSize: 14
|
||||
|
||||
KeyNavigation.backtab: name; KeyNavigation.tab: session
|
||||
|
||||
Keys.onPressed: {
|
||||
if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
|
||||
sddm.login(name.text, password.text, session.index)
|
||||
event.accepted = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Row {
|
||||
spacing: 4
|
||||
width: parent.width / 2
|
||||
z: 100
|
||||
|
||||
Column {
|
||||
z: 100
|
||||
width: parent.width * 1.3
|
||||
spacing : 4
|
||||
anchors.bottom: parent.bottom
|
||||
|
||||
Text {
|
||||
id: lblSession
|
||||
width: parent.width
|
||||
text: textConstants.session
|
||||
wrapMode: TextEdit.WordWrap
|
||||
font.bold: true
|
||||
font.pixelSize: 12
|
||||
}
|
||||
|
||||
ComboBox {
|
||||
id: session
|
||||
width: parent.width; height: 30
|
||||
font.pixelSize: 14
|
||||
|
||||
arrowIcon: "angle-down.png"
|
||||
|
||||
model: sessionModel
|
||||
index: sessionModel.lastIndex
|
||||
|
||||
KeyNavigation.backtab: password; KeyNavigation.tab: layoutBox
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
z: 101
|
||||
width: parent.width * 0.7
|
||||
spacing : 4
|
||||
anchors.bottom: parent.bottom
|
||||
|
||||
Text {
|
||||
id: lblLayout
|
||||
width: parent.width
|
||||
text: textConstants.layout
|
||||
wrapMode: TextEdit.WordWrap
|
||||
font.bold: true
|
||||
font.pixelSize: 12
|
||||
}
|
||||
|
||||
LayoutBox {
|
||||
id: layoutBox
|
||||
width: parent.width; height: 30
|
||||
font.pixelSize: 14
|
||||
|
||||
arrowIcon: "angle-down.png"
|
||||
|
||||
KeyNavigation.backtab: session; KeyNavigation.tab: loginButton
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Row {
|
||||
spacing: 4
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
property int btnWidth: Math.max(loginButton.implicitWidth,
|
||||
shutdownButton.implicitWidth,
|
||||
rebootButton.implicitWidth, 80) + 8
|
||||
Button {
|
||||
id: loginButton
|
||||
text: textConstants.login
|
||||
width: parent.btnWidth
|
||||
|
||||
onClicked: sddm.login(name.text, password.text, session.index)
|
||||
|
||||
KeyNavigation.backtab: layoutBox; KeyNavigation.tab: shutdownButton
|
||||
}
|
||||
|
||||
Button {
|
||||
id: shutdownButton
|
||||
text: textConstants.shutdown
|
||||
width: parent.btnWidth
|
||||
|
||||
onClicked: sddm.powerOff()
|
||||
|
||||
KeyNavigation.backtab: loginButton; KeyNavigation.tab: rebootButton
|
||||
}
|
||||
|
||||
Button {
|
||||
id: rebootButton
|
||||
text: textConstants.reboot
|
||||
width: parent.btnWidth
|
||||
|
||||
onClicked: sddm.reboot()
|
||||
|
||||
KeyNavigation.backtab: shutdownButton; KeyNavigation.tab: name
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Component.onCompleted: {
|
||||
if (name.text == "")
|
||||
name.focus = true
|
||||
else
|
||||
password.focus = true
|
||||
}
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 196 B |
@@ -1,14 +0,0 @@
|
||||
[SddmGreeterTheme]
|
||||
Name=Artix
|
||||
Description=Artix SDDM Theme
|
||||
Author=oberon
|
||||
Type=sddm-theme
|
||||
Version=0.1
|
||||
Website=https://github.com/sddm/sddm
|
||||
Screenshot=preview.png
|
||||
#TranslationsDirectory=translations
|
||||
Email=oberon@manjaro.org
|
||||
MainScript=Main.qml
|
||||
ConfigFile=theme.conf
|
||||
Theme-Id=artix
|
||||
Theme-API=2.0
|
Binary file not shown.
Before Width: | Height: | Size: 1.3 MiB |
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
@@ -1,2 +0,0 @@
|
||||
[General]
|
||||
background=/usr/share/backgrounds/Artix_dna_spiral_dark.jpg
|
@@ -10,7 +10,7 @@ nbd
|
||||
|
||||
artix-grub-theme
|
||||
|
||||
artix-sddm-theme
|
||||
sddm-theme-artix
|
||||
artix-lxqt-presets
|
||||
artix-docs
|
||||
|
||||
|
@@ -33,6 +33,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
|
@@ -33,6 +33,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@@ -86,6 +87,8 @@ zsh
|
||||
alsa-firmware
|
||||
powertop
|
||||
inxi
|
||||
modemmanager
|
||||
usb_modeswitch
|
||||
|
||||
@openrc alsa-utils-openrc
|
||||
@openrc avahi-openrc
|
||||
|
@@ -33,6 +33,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@@ -86,6 +87,8 @@ zsh
|
||||
alsa-firmware
|
||||
powertop
|
||||
inxi
|
||||
modemmanager
|
||||
usb_modeswitch
|
||||
|
||||
@openrc alsa-utils-openrc
|
||||
@openrc avahi-openrc
|
||||
@@ -147,7 +150,7 @@ artix-branding-base
|
||||
artix-gtk-presets
|
||||
artix-qt-presets
|
||||
xcursor-premium
|
||||
artix-sddm-theme
|
||||
sddm-theme-artix
|
||||
|
||||
# LXQt
|
||||
lxqt
|
||||
|
@@ -1,2 +1,3 @@
|
||||
#QT_STYLE_OVERRIDE=gtk2
|
||||
QT_QPA_PLATFORMTHEME=gtk2
|
||||
QTWEBENGINE_CHROMIUM_FLAGS="-blink-settings=darkModeEnabled=true -enable-features=OverlayScrollbar,OverlayScrollbarFlashAfterAnyScrollUpdate,OverlayScrollbarFlashWhenMouseEnter"
|
||||
|
@@ -33,6 +33,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@@ -86,6 +87,8 @@ zsh
|
||||
alsa-firmware
|
||||
powertop
|
||||
inxi
|
||||
modemmanager
|
||||
usb_modeswitch
|
||||
|
||||
@openrc alsa-utils-openrc
|
||||
@openrc avahi-openrc
|
||||
|
145
missing_packages.md
Normal file
145
missing_packages.md
Normal file
@@ -0,0 +1,145 @@
|
||||
TODO: package imports (disabled arch repos) to build
|
||||
|
||||
### Proposal:
|
||||
|
||||
* all packages for official profiles must exist in artix repos
|
||||
|
||||
* community profiles should have as many packages possible in artix repos, but eg FF, TB, libreoffice are excluded for now
|
||||
|
||||
* please add here package lists for other profiles
|
||||
|
||||
### Missing
|
||||
|
||||
* lxqt
|
||||
|
||||
~~~
|
||||
error: target not found: ttf-roboto
|
||||
error: target not found: ttf-roboto-mono
|
||||
error: target not found: xcursor-premium
|
||||
error: target not found: cmst
|
||||
error: target not found: qpdfview
|
||||
error: target not found: raw-thumbnailer
|
||||
~~~
|
||||
|
||||
|
||||
* plasma
|
||||
|
||||
~~~
|
||||
error: target not found: ttf-roboto
|
||||
error: target not found: ttf-roboto-mono
|
||||
error: target not found: xcursor-premium
|
||||
error: target not found: raw-thumbnailer
|
||||
~~~
|
||||
|
||||
* community-qt
|
||||
|
||||
~~~
|
||||
error: target not found: ttf-roboto
|
||||
error: target not found: ttf-roboto-mono
|
||||
error: target not found: xcursor-premium
|
||||
error: target not found: xorg-xwininfo
|
||||
error: target not found: cvs
|
||||
error: target not found: hddtemp
|
||||
error: target not found: wine-mono
|
||||
error: target not found: wine-gecko
|
||||
error: target not found: winetricks
|
||||
error: target not found: qpdfview
|
||||
error: target not found: trojita
|
||||
error: target not found: veracrypt
|
||||
error: target not found: firefox
|
||||
error: target not found: firefox-dark-reader
|
||||
error: target not found: firefox-adblock-plus
|
||||
error: target not found: firefox-noscript
|
||||
error: target not found: firefox-ublock-origin
|
||||
error: target not found: libreoffice-fresh
|
||||
error: target not found: raw-thumbnailer
|
||||
error: target not found: youtube-dl
|
||||
error: target not found: fortune-mod
|
||||
error: target not found: redshift
|
||||
error: target not found: torsocks
|
||||
error: target not found: lib32-mesa-vdpau
|
||||
error: target not found: libva-vdpau-driver
|
||||
error: target not found: libva-intel-driver
|
||||
error: target not found: mesa-demos
|
||||
error: target not found: chafa
|
||||
error: target not found: tigervnc
|
||||
error: target not found: ltrace
|
||||
error: target not found: modem-manager-gui
|
||||
error: target not found: geany-plugins
|
||||
error: target not found: syncthing-gtk
|
||||
error: target not found: handbrake
|
||||
error: target not found: audacity
|
||||
error: target not found: gimp
|
||||
error: target not found: hexchat
|
||||
error: target not found: gufw
|
||||
error: target not found: gtk-engines
|
||||
error: target not found: picom
|
||||
error: target not found: digikam
|
||||
error: target not found: smb4k
|
||||
error: target not found: clementine
|
||||
error: target not found: kvantum-qt5
|
||||
error: target not found: qt5ct
|
||||
error: target not found: mc
|
||||
~~~
|
||||
|
||||
* xfce
|
||||
|
||||
~~~
|
||||
error: target not found: ttf-roboto
|
||||
error: target not found: ttf-roboto-mono
|
||||
error: target not found: xcursor-premium
|
||||
error: target not found: pavucontrol
|
||||
error: target not found: qt5ct
|
||||
error: target not found: lightdm-gtk-greeter
|
||||
error: target not found: midori
|
||||
error: target not found: leafpad
|
||||
~~~
|
||||
|
||||
* i3
|
||||
|
||||
~~~
|
||||
error: target not found: ttf-roboto
|
||||
error: target not found: ttf-roboto-mono
|
||||
error: target not found: xorg-xkill
|
||||
error: target not found: xcursor-premium
|
||||
error: target not found: lightdm-gtk-greeter
|
||||
error: target not found: geany
|
||||
error: target not found: arandr
|
||||
error: target not found: sysstat
|
||||
error: target not found: otf-font-awesome
|
||||
error: target not found: nitrogen
|
||||
error: target not found: menumaker
|
||||
error: target not found: rofi
|
||||
error: target not found: xcursor-neutral
|
||||
error: target not found: archlinux-xdg-menu
|
||||
error: target not found: paprefs
|
||||
error: target not found: pavucontrol
|
||||
error: target not found: picom
|
||||
error: target not found: leafpad
|
||||
error: target not found: pcmanfm
|
||||
error: target not found: feh
|
||||
error: target not found: lxappearance-gtk3
|
||||
error: target not found: lxterminal
|
||||
error: target not found: midori
|
||||
error: target not found: viewnior
|
||||
error: target not found: qt5ct
|
||||
error: target not found: kvantum-qt5
|
||||
~~~
|
||||
|
||||
* gnome
|
||||
|
||||
~~~
|
||||
error: target not found: ttf-roboto
|
||||
error: target not found: ttf-roboto-mono
|
||||
error: target not found: xcursor-premium
|
||||
error: target not found: arc-gtk-theme
|
||||
error: target not found: xcursor-themes
|
||||
error: target not found: gnome-screensaver
|
||||
error: target not found: pavucontrol
|
||||
error: target not found: kvantum-qt5
|
||||
error: target not found: qt5ct
|
||||
error: target not found: mate-icon-theme-faenza
|
||||
error: target not found: midori
|
||||
error: target not found: leafpad
|
||||
~~~
|
||||
|
@@ -33,6 +33,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@@ -86,6 +87,8 @@ zsh
|
||||
alsa-firmware
|
||||
powertop
|
||||
inxi
|
||||
modemmanager
|
||||
usb_modeswitch
|
||||
|
||||
@openrc alsa-utils-openrc
|
||||
@openrc avahi-openrc
|
||||
@@ -147,10 +150,9 @@ artix-branding-base
|
||||
artix-gtk-presets
|
||||
artix-qt-presets
|
||||
xcursor-premium
|
||||
artix-sddm-theme
|
||||
sddm-theme-artix
|
||||
|
||||
# KDE Plasma
|
||||
artix-qt-presets
|
||||
bluedevil
|
||||
breeze
|
||||
breeze-gtk
|
||||
@@ -183,17 +185,26 @@ polkit-kde-agent
|
||||
powerdevil
|
||||
sddm-kcm
|
||||
systemsettings
|
||||
user-manager
|
||||
dolphin
|
||||
kdegraphics-thumbnailers
|
||||
kdesdk-thumbnailers
|
||||
kate
|
||||
kdialog
|
||||
keditbookmarks
|
||||
kfind
|
||||
khelpcenter
|
||||
kgpg
|
||||
kmix
|
||||
konqueror
|
||||
konsole
|
||||
kruler
|
||||
ktimer
|
||||
kwalletmanager
|
||||
kwrite
|
||||
print-manager
|
||||
gwenview
|
||||
spectacle
|
||||
svgpart
|
||||
sweeper
|
||||
|
||||
# Basic usability apps
|
||||
plasma-nm
|
||||
@@ -202,7 +213,6 @@ falkon
|
||||
okular
|
||||
ark
|
||||
breeze-icons
|
||||
screengrab
|
||||
mpv
|
||||
ffmpegthumbnailer
|
||||
ffmpegthumbs
|
||||
|
@@ -1,2 +1,3 @@
|
||||
QT_STYLE_OVERRIDE=gtk2
|
||||
QT_QPA_PLATFORMTHEME=gtk
|
||||
QTWEBENGINE_CHROMIUM_FLAGS="-blink-settings=darkModeEnabled=true -enable-features=OverlayScrollbar,OverlayScrollbarFlashAfterAnyScrollUpdate,OverlayScrollbarFlashWhenMouseEnter"
|
||||
|
@@ -33,6 +33,7 @@ memtest86+
|
||||
mkinitcpio
|
||||
mkinitcpio-openswap
|
||||
nano
|
||||
vi
|
||||
net-tools
|
||||
ntfs-3g
|
||||
@openrc acpid-openrc
|
||||
@@ -86,6 +87,8 @@ zsh
|
||||
alsa-firmware
|
||||
powertop
|
||||
inxi
|
||||
modemmanager
|
||||
usb_modeswitch
|
||||
|
||||
@openrc alsa-utils-openrc
|
||||
@openrc avahi-openrc
|
||||
|
Reference in New Issue
Block a user