added ntp service activation
This commit is contained in:
+10
@@ -30,6 +30,7 @@
|
|||||||
- [[#build-tools][Build Tools]]
|
- [[#build-tools][Build Tools]]
|
||||||
- [[#system-locale][System Locale]]
|
- [[#system-locale][System Locale]]
|
||||||
- [[#keyboard-layout][Keyboard Layout]]
|
- [[#keyboard-layout][Keyboard Layout]]
|
||||||
|
- [[#ntp][NTP]]
|
||||||
- [[#desktop-environments-and-window-manager][Desktop Environments and Window Manager]]
|
- [[#desktop-environments-and-window-manager][Desktop Environments and Window Manager]]
|
||||||
- [[#lightdm][LightDM]]
|
- [[#lightdm][LightDM]]
|
||||||
- [[#xfce][Xfce]]
|
- [[#xfce][Xfce]]
|
||||||
@@ -560,6 +561,15 @@ if ! localectl status | grep -q "X11 Layout.*de"; then
|
|||||||
sudo localectl set-x11-keymap --no-convert de
|
sudo localectl set-x11-keymap --no-convert de
|
||||||
fi
|
fi
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** NTP
|
||||||
|
#+begin_src shell :tangle update.sh
|
||||||
|
systemd_service="systemd-timesyncd"
|
||||||
|
if ! systemctl is-enabled --quiet "$systemd_service"; then
|
||||||
|
echo "Enabling $systemd_service"
|
||||||
|
sudo systemctl enable "$systemd_service"
|
||||||
|
fi
|
||||||
|
#+end_src
|
||||||
|
|
||||||
* Desktop Environments and Window Manager
|
* Desktop Environments and Window Manager
|
||||||
** [[https://wiki.archlinux.org/title/LightDM][LightDM]]
|
** [[https://wiki.archlinux.org/title/LightDM][LightDM]]
|
||||||
install the required packages
|
install the required packages
|
||||||
|
|||||||
Reference in New Issue
Block a user