vinstaller/etc/xserver/x11

34 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-02-07 04:18:16 +01:00
packages() {
2022-02-08 19:53:21 +01:00
addpkg xorg-minimal xorg-apps xorg-fonts dbus noto-fonts-emoji mesa-dri vulkan-loader
2022-02-07 21:57:02 +01:00
addpkg "firefox-i18n-${LANGUAGE}"
addpkg libreoffice-writer libreoffice-calc "libreoffice-i18n-${LANGUAGE}"
addpkg "thunderbird-i18n-${LANGUAGE}"
addpkg element-desktop
2022-02-07 22:50:49 +01:00
addpkg vlc yt-dlp
2022-02-08 19:53:21 +01:00
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
2022-02-07 16:35:25 +01:00
}
2022-02-08 19:53:21 +01:00
2022-02-07 16:35:25 +01:00
config() {
2022-02-08 19:53:21 +01:00
enable_service dbus alsa
disable_service acpid
2022-02-07 22:50:49 +01:00
ln -s /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf /etc/fonts/conf.d/
2022-02-07 16:35:25 +01:00
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
2022-02-07 22:50:49 +01:00
ln -s /usr/bin/yt-dlp /usr/local/bin/youtube-dl
2022-02-07 04:18:16 +01:00
}