MATE: Difference between revisions
(link gentoo and postmarketOS wiki) |
(link to dbus installation instructions) |
||
Line 6: | Line 6: | ||
* [[Repositories#Enabling_the_community_repository|Enable the Community repository]] | * [[Repositories#Enabling_the_community_repository|Enable the Community repository]] | ||
* [[Alpine_setup_scripts#setup-xorg-base|Install Xorg]] | * [[Alpine_setup_scripts#setup-xorg-base|Install Xorg]] | ||
* [[D-Bus#Installation|Install and configure D-Bus]] with X11 add-ons | |||
<br> | <br> | ||
Line 11: | Line 12: | ||
= Install MATE Desktop = | = Install MATE Desktop = | ||
{{Cmd|<nowiki># apk add mate-desktop-environment | {{Cmd|<nowiki># apk add mate-desktop-environment lxdm adwaita-icon-theme faenza-icon-theme | ||
# gvfs_pkgs=$(apk search gvfs -q | grep -v '\-dev' | grep -v '\-lang' | grep -v '\-doc') | # gvfs_pkgs=$(apk search gvfs -q | grep -v '\-dev' | grep -v '\-lang' | grep -v '\-doc') | ||
# apk add $gvfs_pkgs</nowiki>}} | # apk add $gvfs_pkgs</nowiki>}} | ||
Line 22: | Line 23: | ||
Try, starting dbus and lxdm. This will start the display manager and should allow you to login. | Try, starting dbus and lxdm. This will start the display manager and should allow you to login. | ||
{{Cmd|# rc-service lxdm start}} | {{Cmd|# rc-service lxdm start}} | ||
If it worked, enable the services to start on reboot | If it worked, enable the services to start on reboot | ||
{{Cmd|# rc-update add lxdm}} | {{Cmd|# rc-update add lxdm}} | ||
Revision as of 20:03, 27 October 2023
Prerequisites
- Install AlpineLinux
- Create a user account
- Enable the Community repository
- Install Xorg
- Install and configure D-Bus with X11 add-ons
Install MATE Desktop
# apk add mate-desktop-environment lxdm adwaita-icon-theme faenza-icon-theme # gvfs_pkgs=$(apk search gvfs -q | grep -v '\-dev' | grep -v '\-lang' | grep -v '\-doc') # apk add $gvfs_pkgs
If you are running your Alpine from RAM, save the changes:
# lbu ci
Try, starting dbus and lxdm. This will start the display manager and should allow you to login.
# rc-service lxdm start
If it worked, enable the services to start on reboot
# rc-update add lxdm
Misc
TrueType fonts
Add all available TrueType Fonts:
$ ttfs=$(apk search -q ttf- | grep -v '\-doc') # apk add $ttfs
Disabling standby and screensaver
Check the current configuration using xset:
# 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