34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
packages() {
|
|
addpkg xorg-minimal xorg-apps xorg-fonts dbus noto-fonts-emoji mesa-dri vulkan-loader
|
|
addpkg "firefox-i18n-${LANGUAGE}"
|
|
addpkg libreoffice-writer libreoffice-calc "libreoffice-i18n-${LANGUAGE}"
|
|
addpkg "thunderbird-i18n-${LANGUAGE}"
|
|
addpkg element-desktop
|
|
addpkg vlc yt-dlp
|
|
addpkg alsa-utils
|
|
addpkg "aspell-${LANGUAGE}" gspell
|
|
|
|
addpkg ${email} ${terminal} ${imageviewer} ${pdf} ${filemanager} ${archiver} ${screenshot} ${calc} ${pinentry} ${keyring} ${gpg} ${policykit} ${sshaskpass} ${partmanager} ${dm} ${de} ${misc}
|
|
|
|
|
|
ignorepkg font-adobe-75dpi font-adobe-100dpi
|
|
}
|
|
|
|
|
|
config() {
|
|
enable_service dbus alsa
|
|
disable_service acpid
|
|
ln -s /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf /etc/fonts/conf.d/
|
|
|
|
if [ "$LANGUAGE" == "de" ]; then
|
|
mkdir -p /etc/X11/xorg.conf.d
|
|
{ echo "Section \"InputClass\"";
|
|
echo " Identifier \"keyboard\"";
|
|
echo " MatchIsKeyboard \"yes\"";
|
|
echo " Option \"XkbLayout\" \"de\"";
|
|
echo " Option \"XkbVariant\" \"nodeadkeys\"";
|
|
echo " #Option \"XkbOptions\" \"grp:alt_shift_toggle\"";
|
|
echo "EndSection"; } > /etc/X11/xorg.conf.d/10-keyboard.conf
|
|
fi
|
|
ln -s /usr/bin/yt-dlp /usr/local/bin/youtube-dl
|
|
} |