Compare commits

...

2 Commits

Author SHA1 Message Date
Alex Palaistras 59a21731c7 Add Aerc and Calcurse
These have more-or-less replaced Thunderbird for me, and present a great
leap in usability and overall speed in use.
2024-01-21 16:11:19 +00:00
Alex Palaistras c42f3f3dbb Enable time sync with systemd-timesyncd
This enables time synchronization by default, which is more-or-less a
requirement for a functioning desktop.
2024-01-21 16:10:26 +00:00
4 changed files with 22 additions and 3 deletions

View File

@ -15,6 +15,9 @@ depends=(
wireplumber
# User utilities and dependencies.
aspell
aspell-el
aspell-en
bluez-utils
btop
emacs

View File

@ -3,6 +3,10 @@ post_install() {
systemctl enable --now systemd-resolved
systemctl enable --now systemd-networkd
echo "Enabling NTP clock synchronization with systemd-timesyncd..."
systemctl enable --now systemd-timesyncd
timedatectl set-ntp true
echo "Enabling PCSC socket for GPG cards..."
systemctl enable --now pcscd.socket

View File

@ -7,14 +7,24 @@ arch=("any")
url="https://git.deuill.org/deuill/archlinux-packages"
license=("MIT")
depends=(
# Utilities.
# Graphical applications.
alacritty
imv
thunar
tumbler
zathura
zathura-pdf-poppler
zathura-pdf-mupdf
zathura-cb
# Terminal applications.
aerc
calcurse
# Additional libraries.
python-httplib2
python-pyparsing
# Support packages.
materia-gtk-theme
papirus-icon-theme
tumbler
)

View File

@ -35,5 +35,7 @@ depends=(
wl-clipboard
xdg-utils
xdg-user-dirs
perl-file-mimeinfo
xorg-xrdb
)
install="$pkgname.install"