3 Commits

50 changed files with 907 additions and 731 deletions

1
.gitignore vendored
View File

@@ -1,2 +1 @@
to_package/ to_package/
**/rc.conf

19
TODO
View File

@@ -15,29 +15,14 @@ DONE mimeapps.list must be separate for each profile
DONE Networkmanager in LXQt DONE Networkmanager in LXQt
DONE GRUB remove 1280x1024 DONE GRUB remove 1280x1024
Autologin-session doesn't work
2020-03-08 2020-03-08
========== ==========
DONE Use firefox-dark-reader instead of local/skel profile's DONE Use firefox-dark-reader instead of local/skel profile's
DONE Also consider a few more addons from the group DONE Also consider a few more addons from the group
DONE Test firefox before releasing TODO Test firefox before releasing
2020-04-18 2020-04-18
DONE XFCE4 profile 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

View File

@@ -32,7 +32,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc
@@ -82,8 +81,6 @@ which
efibootmgr efibootmgr
xfsprogs xfsprogs
zsh zsh
modemmanager
usb_modeswitch
mkinitcpio-nfs-utils mkinitcpio-nfs-utils
squashfs-tools squashfs-tools

View File

@@ -1,110 +0,0 @@
#!/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"

View File

@@ -1,127 +0,0 @@
#!/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}

View File

@@ -8,7 +8,7 @@ colorize
WORKSPACE=/home/$USER/artools-workspace WORKSPACE=/home/$USER/artools-workspace
PROFILES=${WORKSPACE}/iso-profiles PROFILES=${WORKSPACE}/iso-profiles
REPO=/srv/iso/weekly-iso REPO=/srv/iso/testing-iso
CWD=`pwd` CWD=`pwd`
cd $PROFILES cd $PROFILES

View File

@@ -33,7 +33,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc
@@ -87,13 +86,11 @@ zsh
alsa-firmware alsa-firmware
powertop powertop
inxi inxi
modemmanager
usb_modeswitch
@openrc alsa-utils-openrc @openrc alsa-utils-openrc
@openrc avahi-openrc @openrc avahi-openrc
@openrc networkmanager-openrc
@openrc displaymanager-openrc @openrc displaymanager-openrc
@openrc networkmanager-openrc
@openrc ntp-openrc @openrc ntp-openrc
@openrc openrc-settingsd @openrc openrc-settingsd
@openrc bluez-openrc @openrc bluez-openrc
@@ -127,7 +124,6 @@ xdg-utils
xorg-server xorg-server
xorg-xinit xorg-xinit
xorg-xhost
xf86-input-vmmouse xf86-input-vmmouse
xf86-video-amdgpu xf86-video-amdgpu
@@ -144,12 +140,20 @@ xf86-video-voodoo
# Core ISO packages end here # Core ISO packages end here
# Branding # Branding
artix-gtk-presets
artix-grub-theme artix-grub-theme
artix-dark-theme artix-dark-theme
artix-branding-base
artix-gtk-presets
artix-qt-presets
xcursor-premium xcursor-premium
artix-branding-base
# Basic usability apps
gvfs-mtp
leafpad
lightdm-gtk-greeter
light-locker
midori
mpv
xreader
# Cinnamon # Cinnamon
cinnamon cinnamon
@@ -170,16 +174,3 @@ nemo-preview
nemo-seahorse nemo-seahorse
nemo-share nemo-share
xcursor-vanilla-dmz xcursor-vanilla-dmz
# Basic usability apps
leafpad
midori
atril
lightdm-gtk-greeter
light-locker
mpv
ffmpegthumbnailer
ffmpegthumbs
raw-thumbnailer
qt5-imageformats
gvfs-mtp

View File

@@ -0,0 +1,205 @@
#!/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

View File

@@ -1,3 +1,2 @@
QT_QPA_PLATFORMTHEME=gtk2 QT_QPA_PLATFORMTHEME=gtk2
QT_STYLE_OVERRIDE=gtk QT_STYLE_OVERRIDE=gtk
QTWEBENGINE_CHROMIUM_FLAGS="-blink-settings=darkModeEnabled=true -enable-features=OverlayScrollbar,OverlayScrollbarFlashAfterAnyScrollUpdate,OverlayScrollbarFlashWhenMouseEnter"

View File

@@ -1,2 +1 @@
127.0.0.1 localhost 127.0.0.1 localhost artix
::1 localhost

View File

@@ -33,7 +33,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc
@@ -87,8 +86,6 @@ zsh
alsa-firmware alsa-firmware
powertop powertop
inxi inxi
modemmanager
usb_modeswitch
@openrc alsa-utils-openrc @openrc alsa-utils-openrc
@openrc avahi-openrc @openrc avahi-openrc
@@ -163,8 +160,8 @@ pacman-contrib
hddtemp hddtemp
# That hated other # That hated other
wine-mono
wine-gecko wine-gecko
wine
winetricks winetricks
# MATE # MATE
@@ -215,12 +212,11 @@ firefox-adblock-plus
firefox-noscript firefox-noscript
firefox-ublock-origin firefox-ublock-origin
libreoffice-fresh libreoffice-fresh
jre
mpv mpv
youtube-dl
ffmpegthumbnailer ffmpegthumbnailer
ffmpegthumbs ffmpegthumbs
raw-thumbnailer
qt5-imageformats
youtube-dl
pulseaudio-alsa pulseaudio-alsa
p7zip p7zip
unrar unrar
@@ -254,7 +250,7 @@ breeze-icons
# Network management # Network management
connman-gtk connman-gtk
modem-manager-gui modemmanager
# GTK pkgs # GTK pkgs
geany-plugins geany-plugins
@@ -263,6 +259,7 @@ handbrake
audacity audacity
gimp gimp
inkscape inkscape
openshot
hexchat hexchat
gufw gufw
meld meld
@@ -273,15 +270,16 @@ brasero
pluma pluma
thunderbird thunderbird
claws-mail claws-mail
lollypop
midori midori
leafpad leafpad
# other stuff # other stuff
qt5-imageformats
gtk-engines gtk-engines
accountsservice accountsservice
raw-thumbnailer
bluez-utils bluez-utils
trizen yaourtix
hunspell-en_US hunspell-en_US
picom picom
@@ -289,9 +287,6 @@ picom
kdenlive kdenlive
digikam digikam
smb4k smb4k
clementine
projectm-pulseaudio
projectm-sdl
# Uniform QT/GTK look # Uniform QT/GTK look
kvantum-qt5 kvantum-qt5
@@ -312,4 +307,3 @@ virtualbox-guest-utils
mc mc
screen screen
tmux tmux
hdparm

View File

@@ -0,0 +1 @@
../../../community/live-overlay/etc/rc.conf

View File

@@ -0,0 +1 @@
../../../community/root-overlay/etc/rc.local

View File

@@ -33,7 +33,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc
@@ -87,8 +86,6 @@ zsh
alsa-firmware alsa-firmware
powertop powertop
inxi inxi
modemmanager
usb_modeswitch
@openrc alsa-utils-openrc @openrc alsa-utils-openrc
@openrc avahi-openrc @openrc avahi-openrc
@@ -149,7 +146,7 @@ artix-dark-theme
artix-branding-base artix-branding-base
artix-community-presets artix-community-presets
xcursor-premium xcursor-premium
sddm-theme-artix artix-sddm-theme
# Community goodies # Community goodies
base-devel base-devel
@@ -164,17 +161,21 @@ pacman-contrib
hddtemp hddtemp
# That hated other # That hated other
wine-mono
wine-gecko wine-gecko
wine
winetricks winetricks
# KDE Plasma # KDE Plasma
plasma plasma
kf5 kf5
kde-system kdebase
kde-network kdeutils
kde-utilities kde-applications
kdenetwork
kdepim kdepim
kdegraphics
kdeutils
kdemultimedia
# LXQT # LXQT
lxqt lxqt
@@ -190,12 +191,11 @@ firefox-adblock-plus
firefox-noscript firefox-noscript
firefox-ublock-origin firefox-ublock-origin
libreoffice-fresh libreoffice-fresh
jre
mpv mpv
youtube-dl
ffmpegthumbnailer ffmpegthumbnailer
ffmpegthumbs ffmpegthumbs
raw-thumbnailer
qt5-imageformats
youtube-dl
pulseaudio-alsa pulseaudio-alsa
p7zip p7zip
unrar unrar
@@ -229,7 +229,6 @@ breeze-icons
# Network management # Network management
network-manager-applet network-manager-applet
modem-manager-gui
# GTK pkgs # GTK pkgs
geany-plugins geany-plugins
@@ -238,61 +237,26 @@ handbrake
audacity audacity
gimp gimp
inkscape inkscape
openshot
hexchat hexchat
gufw gufw
meld meld
# other stuff # other stuff
qt5-imageformats
gtk-engines gtk-engines
accountsservice accountsservice
raw-thumbnailer
bluez-utils bluez-utils
trizen yaourtix
hunspell-en_US hunspell-en_US
picom picom
# Qt pkgs # Qt pkgs
konversation
falkon
kdenlive kdenlive
digikam digikam
smb4k 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 # Uniform QT/GTK look
kvantum-qt5 kvantum-qt5
@@ -313,4 +277,3 @@ virtualbox-guest-utils
mc mc
screen screen
tmux tmux
hdparm

View File

@@ -0,0 +1 @@
../../../community/live-overlay/etc/rc.conf

View File

@@ -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

View File

@@ -1,3 +1,2 @@
#QT_QPA_PLATFORMTHEME=gtk2 #QT_QPA_PLATFORMTHEME=gtk2
QT_STYLE_OVERRIDE=gtk QT_STYLE_OVERRIDE=gtk
QTWEBENGINE_CHROMIUM_FLAGS="-blink-settings=darkModeEnabled=true -enable-features=OverlayScrollbar,OverlayScrollbarFlashAfterAnyScrollUpdate,OverlayScrollbarFlashWhenMouseEnter"

View File

@@ -0,0 +1 @@
../../../community/root-overlay/etc/rc.local

View File

@@ -1 +0,0 @@
../../live-overlay/etc/sddm.conf

View 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

View File

@@ -0,0 +1 @@
../../../../community/root-overlay/usr/share/sddm

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB

View File

@@ -1,33 +1,24 @@
#!/bin/sh #!/bin/sh
# Use the DNA helix in community ISOs # Use the DNA helix in community ISOs
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/' \
sed -i 's/GradientGlowBlue/Artix_dna_spiral_dark/g' \ /etc/dconf/db/mate.d/theme \
/usr/share/glib-2.0/schemas/99_cinnamon.gschema.override \
/etc/skel/.config/pcmanfm/LXDE/desktop-items-0.conf \ /etc/skel/.config/pcmanfm/LXDE/desktop-items-0.conf \
/etc/skel/.config/pcmanfm-qt/lxqt/settings.conf \ /etc/skel/.config/pcmanfm-qt/lxqt/settings.conf \
/etc/skel/.config/pcmanfm-qt/default/settings.conf \ /etc/skel/.config/pcmanfm-qt/default/settings.conf \
/etc/skel/.config/kscreenlockerrc \ /etc/skel/.config/kscreenlockerrc \
/etc/skel/.config/mate/backgrounds.xml \ /etc/skel/.config/plasmarc 2>/dev/null
/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 # Also in live
for USER in /home/*; do for USER in /home/*; do
sed -i 's/GradientGlowBlue/Artix_dna_spiral_dark/g' \ sed -i 's/GradientGlowBlue/Artix_dna_spiral_dark/' \
$USER/.config/pcmanfm/LXDE/desktop-items-0.conf \ $USER/.config/pcmanfm/LXDE/desktop-items-0.conf \
$USER/.config/pcmanfm-qt/lxqt/settings.conf \ $USER/.config/pcmanfm-qt/lxqt/settings.conf \
$USER/.config/pcmanfm-qt/default/settings.conf \ $USER/.config/pcmanfm-qt/default/settings.conf \
$USER/.config/kscreenlockerrc \ $USER/.config/kscreenlockerrc \
$USER/.config/plasma-org.kde.plasma.desktop-appletsrc \
$USER/.config/plasmarc 2>/dev/null $USER/.config/plasmarc 2>/dev/null
done done

View File

@@ -0,0 +1,3 @@
#!/bin/sh
[ -x /etc/rc.local ] && /etc/rc.local

View File

@@ -0,0 +1,3 @@
#!/bin/bash
[ -x /etc/rc.local.stop ] && /etc/rc.local.stop

View File

@@ -4,11 +4,11 @@
mv -f /etc/mkinitcpio.conf.mod /etc/mkinitcpio.conf 2>/dev/null 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 # Remove ecnryption-related stuff if unneeded from mkinitcpio.conf, default/grub and grub.cfg
#if [ ! -e /crypto_keyfile.bin ]; then if [ ! -e /crypto_keyfile.bin ]; then
# sed -i 's|/crypto_keyfile.bin||' /etc/mkinitcpio.conf* 2>/dev/null 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|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 sed -i 's|cryptkey=rootfs:/crypto_keyfile.bin||' /etc/default/grub /boot/grub/grub.cfg 2>/dev/null
#fi fi
# Run once and disappear # Run once and disappear
rm -f $0 rm -f $0

View File

@@ -102,9 +102,9 @@ Server = https://universe.artixlinux.org/$arch
# An example of a custom package repository. See the pacman manpage for # An example of a custom package repository. See the pacman manpage for
# tips on creating your own repositories. # tips on creating your own repositories.
#[custom] #[localrepo]
#SigLevel = Optional TrustAll #SigLevel = Optional TrustAll
#Server = file:///home/custompkgs #Server = file:///home/user/localrepo
# #
# ARCHLINUX # ARCHLINUX

View File

@@ -0,0 +1,205 @@
#!/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

View File

@@ -0,0 +1 @@
../../../live-overlay/etc/local.d/local.start

View File

@@ -0,0 +1 @@
../../../live-overlay/etc/local.d/local.stop

View File

@@ -0,0 +1 @@
../../live-overlay/etc/rc.conf

View File

@@ -0,0 +1,12 @@
#!/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 &

View File

@@ -25,7 +25,7 @@ case $XDG_CURRENT_DESKTOP in
;; ;;
MATE) [[ -f .hidden-mate ]] && ln -sf .hidden-mate .hidden MATE) [[ -f .hidden-mate ]] && ln -sf .hidden-mate .hidden
;; ;;
LXDE) rm -f org.kde.konversation.desktop LXDE) [[ -f .hidden-lxde ]] && ln -sf .hidden-lxde .hidden
;; ;;
LXQt) [[ -f .hidden-lxqt ]] && ln -sf .hidden-lxqt .hidden LXQt) [[ -f .hidden-lxqt ]] && ln -sf .hidden-lxqt .hidden
;; ;;

View File

@@ -0,0 +1,245 @@
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.

After

Width:  |  Height:  |  Size: 196 B

View File

@@ -0,0 +1,14 @@
[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.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,2 @@
[General]
background=/usr/share/backgrounds/Artix_dna_spiral_dark.jpg

View File

@@ -10,7 +10,7 @@ nbd
artix-grub-theme artix-grub-theme
sddm-theme-artix artix-sddm-theme
artix-lxqt-presets artix-lxqt-presets
artix-docs artix-docs

View File

@@ -33,7 +33,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc

View File

@@ -16,7 +16,6 @@ ecryptfs-utils
exfat-utils exfat-utils
f2fs-tools f2fs-tools
grub grub
htop
inetutils inetutils
iptables iptables
ipw2100-fw ipw2100-fw
@@ -33,7 +32,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc
@@ -87,8 +85,6 @@ zsh
alsa-firmware alsa-firmware
powertop powertop
inxi inxi
modemmanager
usb_modeswitch
@openrc alsa-utils-openrc @openrc alsa-utils-openrc
@openrc avahi-openrc @openrc avahi-openrc
@@ -127,7 +123,6 @@ xdg-utils
xorg-server xorg-server
xorg-xinit xorg-xinit
xorg-xhost
xf86-input-vmmouse xf86-input-vmmouse
xf86-video-amdgpu xf86-video-amdgpu
@@ -170,15 +165,11 @@ openbox
pcmanfm pcmanfm
# Basic usability apps # Basic usability apps
connman-gtk
leafpad
midori
atril
lightdm-gtk-greeter lightdm-gtk-greeter
light-locker light-locker
atril
connman-gtk
midori
leafpad
mpv mpv
ffmpegthumbnailer
ffmpegthumbs
raw-thumbnailer
qt5-imageformats
gvfs-mtp gvfs-mtp

View File

@@ -16,7 +16,6 @@ ecryptfs-utils
exfat-utils exfat-utils
f2fs-tools f2fs-tools
grub grub
htop
inetutils inetutils
iptables iptables
ipw2100-fw ipw2100-fw
@@ -33,7 +32,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc
@@ -87,8 +85,6 @@ zsh
alsa-firmware alsa-firmware
powertop powertop
inxi inxi
modemmanager
usb_modeswitch
@openrc alsa-utils-openrc @openrc alsa-utils-openrc
@openrc avahi-openrc @openrc avahi-openrc
@@ -127,7 +123,6 @@ xdg-utils
xorg-server xorg-server
xorg-xinit xorg-xinit
xorg-xhost
xf86-input-vmmouse xf86-input-vmmouse
xf86-video-amdgpu xf86-video-amdgpu
@@ -149,23 +144,19 @@ artix-dark-theme
artix-branding-base artix-branding-base
artix-gtk-presets artix-gtk-presets
artix-qt-presets artix-qt-presets
artix-sddm-theme
xcursor-premium xcursor-premium
sddm-theme-artix
# LXQt # LXQt
lxqt lxqt
# Basic usability apps # Basic usability apps
cmst screengrab
kwrite kwrite
falkon falkon
qpdfview xarchiver
lxqt-archiver
breeze-icons breeze-icons
screengrab
mpv mpv
ffmpegthumbnailer
ffmpegthumbs
raw-thumbnailer
qt5-imageformats
gvfs-mtp gvfs-mtp
qpdfview
cmst

View File

@@ -1,3 +1,2 @@
#QT_STYLE_OVERRIDE=gtk2 #QT_STYLE_OVERRIDE=gtk2
QT_QPA_PLATFORMTHEME=gtk2 QT_QPA_PLATFORMTHEME=gtk2
QTWEBENGINE_CHROMIUM_FLAGS="-blink-settings=darkModeEnabled=true -enable-features=OverlayScrollbar,OverlayScrollbarFlashAfterAnyScrollUpdate,OverlayScrollbarFlashWhenMouseEnter"

View File

@@ -16,7 +16,6 @@ ecryptfs-utils
exfat-utils exfat-utils
f2fs-tools f2fs-tools
grub grub
htop
inetutils inetutils
iptables iptables
ipw2100-fw ipw2100-fw
@@ -33,7 +32,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc
@@ -87,8 +85,6 @@ zsh
alsa-firmware alsa-firmware
powertop powertop
inxi inxi
modemmanager
usb_modeswitch
@openrc alsa-utils-openrc @openrc alsa-utils-openrc
@openrc avahi-openrc @openrc avahi-openrc
@@ -127,7 +123,6 @@ xdg-utils
xorg-server xorg-server
xorg-xinit xorg-xinit
xorg-xhost
xf86-input-vmmouse xf86-input-vmmouse
xf86-video-amdgpu xf86-video-amdgpu
@@ -174,15 +169,11 @@ mate-utils
mozo mozo
# Basic usability apps # Basic usability apps
connman-gtk
leafpad
midori
atril
lightdm-gtk-greeter lightdm-gtk-greeter
light-locker light-locker
atril
connman-gtk
midori
leafpad
mpv mpv
ffmpegthumbnailer
ffmpegthumbs
raw-thumbnailer
qt5-imageformats
gvfs-mtp gvfs-mtp

View File

@@ -1,145 +0,0 @@
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
~~~

View File

@@ -16,7 +16,6 @@ ecryptfs-utils
exfat-utils exfat-utils
f2fs-tools f2fs-tools
grub grub
htop
inetutils inetutils
iptables iptables
ipw2100-fw ipw2100-fw
@@ -33,7 +32,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc
@@ -87,8 +85,6 @@ zsh
alsa-firmware alsa-firmware
powertop powertop
inxi inxi
modemmanager
usb_modeswitch
@openrc alsa-utils-openrc @openrc alsa-utils-openrc
@openrc avahi-openrc @openrc avahi-openrc
@@ -127,7 +123,6 @@ xdg-utils
xorg-server xorg-server
xorg-xinit xorg-xinit
xorg-xhost
xf86-input-vmmouse xf86-input-vmmouse
xf86-video-amdgpu xf86-video-amdgpu
@@ -149,10 +144,11 @@ artix-dark-theme
artix-branding-base artix-branding-base
artix-gtk-presets artix-gtk-presets
artix-qt-presets artix-qt-presets
artix-sddm-theme
xcursor-premium xcursor-premium
sddm-theme-artix
# KDE Plasma # KDE Plasma
artix-qt-presets
bluedevil bluedevil
breeze breeze
breeze-gtk breeze-gtk
@@ -180,42 +176,30 @@ plasma-browser-integration
plasma-desktop plasma-desktop
plasma-integration plasma-integration
plasma-workspace plasma-workspace
plasma-pa
polkit-kde-agent polkit-kde-agent
powerdevil powerdevil
sddm-kcm sddm-kcm
systemsettings systemsettings
user-manager
dolphin dolphin
kdegraphics-thumbnailers
kdesdk-thumbnailers
kate kate
kdialog kdialog
keditbookmarks keditbookmarks
kfind kfind
kgpg khelpcenter
kmix
konqueror
konsole konsole
kruler
ktimer
kwalletmanager kwalletmanager
kwrite
print-manager
gwenview gwenview
ark
spectacle spectacle
svgpart
sweeper
# Basic usability apps # Basic usability apps
plasma-nm screengrab
kwrite kwrite
falkon falkon
okular xarchiver
ark
breeze-icons breeze-icons
mpv mpv
ffmpegthumbnailer
ffmpegthumbs
raw-thumbnailer
qt5-imageformats
gvfs-mtp gvfs-mtp
okular
plasma-nm

View File

@@ -1,3 +1,2 @@
QT_STYLE_OVERRIDE=gtk2 QT_STYLE_OVERRIDE=gtk2
QT_QPA_PLATFORMTHEME=gtk QT_QPA_PLATFORMTHEME=gtk
QTWEBENGINE_CHROMIUM_FLAGS="-blink-settings=darkModeEnabled=true -enable-features=OverlayScrollbar,OverlayScrollbarFlashAfterAnyScrollUpdate,OverlayScrollbarFlashWhenMouseEnter"

View File

@@ -16,7 +16,6 @@ ecryptfs-utils
exfat-utils exfat-utils
f2fs-tools f2fs-tools
grub grub
htop
inetutils inetutils
iptables iptables
ipw2100-fw ipw2100-fw
@@ -33,7 +32,6 @@ memtest86+
mkinitcpio mkinitcpio
mkinitcpio-openswap mkinitcpio-openswap
nano nano
vi
net-tools net-tools
ntfs-3g ntfs-3g
@openrc acpid-openrc @openrc acpid-openrc
@@ -87,8 +85,6 @@ zsh
alsa-firmware alsa-firmware
powertop powertop
inxi inxi
modemmanager
usb_modeswitch
@openrc alsa-utils-openrc @openrc alsa-utils-openrc
@openrc avahi-openrc @openrc avahi-openrc
@@ -127,7 +123,6 @@ xdg-utils
xorg-server xorg-server
xorg-xinit xorg-xinit
xorg-xhost
xf86-input-vmmouse xf86-input-vmmouse
xf86-video-amdgpu xf86-video-amdgpu
@@ -158,15 +153,11 @@ pulseaudio
pavucontrol pavucontrol
# Basic usability apps # Basic usability apps
connman-gtk
leafpad
midori
atril
lightdm-gtk-greeter lightdm-gtk-greeter
light-locker light-locker
atril
connman-gtk
midori
leafpad
mpv mpv
ffmpegthumbnailer
ffmpegthumbs
raw-thumbnailer
qt5-imageformats
gvfs-mtp gvfs-mtp