MATE: Difference between revisions
(→Install MATE Desktop: fix typo) |
m (refer to dedicated pages) |
||
Line 1: | Line 1: | ||
= Prerequisites = | |||
* [[Installation|Alpine Installation]] | |||
* [[Setting_up_a_new_user#Creating_a_new_user|Create user accounts]] | |||
* [[Alpine_setup_scripts#setup-xorg-base|Graphical base environment]] | |||
* [[Enable_Community_Repository#Using_community_repositories|Enabled "community" repository]] | |||
== Install MATE Desktop == | == Install MATE Desktop == | ||
Line 42: | Line 30: | ||
}} | }} | ||
<!-- | <!-- |
Revision as of 18:41, 9 May 2021
Prerequisites
Install MATE Desktop
# apk add mate-desktop-environment dbus dbus-x11 lxdm udev adwaita-icon-theme faenza-icon-theme sudo # gvfs_pkgs=$(apk search gvfs -q | grep -v '\-dev' | grep -v '\-lang' | grep -v '\-doc') # apk add $gvfs_pkgs
# apk del mate-screensaver # ln -s /usr/etc/xdg/menus/ /etc/xdg/menus # apk add mate-screensaver
Add all available True Type Fonts:
$ ttfs=$(apk search -q ttf- | grep -v '\-doc') # apk add $ttfs
If you are running your Alpine from RAM, save the changes:
# lbu ci
Enable services to start on reboot
# rc-update add lxdm # rc-update add dbus # rc-update add udev
And finally, start the dbus, udev, and lxdm. This will start the display manager and allow you to login.
# rc-service dbus start # rc-service udev start # rc-service lxdm start
Misc
Disabling standby and screensaver
Check the current configuration using xset:
$ sudo apk add xset $ xset q
Contents of xset q
To disable those timers issue the command:
$ xset dpms 0 0 0
Santiy check:
$ xset q | grep Standby Standby: 0 Suspend: 0 Off: 0