MATE: Difference between revisions
Braddeicide (talk | contribs) (Required for login to work, provides /usr/bin/dbus-launch) |
Prabuanand (talk | contribs) m (added URL of upstream) |
||
(28 intermediate revisions by 11 users not shown) | |||
Line 1: | Line 1: | ||
The [https://mate-desktop.org/ MATE Desktop Environment] is the continuation of GNOME 2. It provides an intuitive and attractive desktop environment using traditional metaphors for Linux and other Unix-like operating systems. | |||
{{:Include:Setup-desktop}} | |||
{{ | |||
= Manual Installation = | |||
== Prerequisites == | |||
* [[Alpine_setup_scripts#setup-xorg-base|Install Xorg]] | |||
* [[D-Bus#Installation|Install and configure D-Bus]] with X11 add-ons | |||
<br> | |||
--> | {{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') | |||
# apk add $gvfs_pkgs</nowiki>}} | |||
<br> | |||
{{Cmd| | If you are running your Alpine installation from RAM, save the changes: | ||
{{Cmd|# lbu ci}} | |||
}} | |||
<br> | |||
Try starting dbus and lxdm. This will start the display manager and should allow you to login. | |||
{{Cmd|# | {{Cmd|# rc-service lxdm start}} | ||
If it worked, enable the services to start on reboot | |||
{{Cmd|# rc-update add lxdm}} | |||
{{Cmd|# rc- | |||
<br> | |||
= Misc = | |||
Add all available | === TrueType fonts === | ||
{{Todo|The directions below need improvement because they don't work well: They pull in many non-font packages.}} | |||
Add all available TrueType Fonts: | |||
{{Cmd|<nowiki>$ ttfs=$(apk search -q ttf- | grep -v '\-doc') | {{Cmd|<nowiki>$ ttfs=$(apk search -q ttf- | grep -v '\-doc') | ||
# apk add $ttfs</nowiki> | # apk add $ttfs</nowiki>}} | ||
=== Disabling standby and screensaver === | === Disabling standby and screensaver === | ||
Check the current configuration using xset: | Check the current configuration using xset: | ||
{{Cmd| | {{Cmd|# apk add xset | ||
$ xset q}} | $ xset q}} | ||
Line 127: | Line 87: | ||
{{Cmd|$ xset q | grep Standby | {{Cmd|$ xset q | grep Standby | ||
Standby: 0 Suspend: 0 Off: 0}} | Standby: 0 Suspend: 0 Off: 0}} | ||
== See also == | |||
* [https://wiki.archlinux.org/title/MATE MATE - Archwiki] | |||
* [https://wiki.gentoo.org/wiki/MATE MATE - Gentoo Wiki] | |||
* [https://wiki.postmarketos.org/wiki/MATE MATE - postmarketOS Wiki] | |||
[[Category:Desktop]] | [[Category:Desktop]] | ||
[[Category:Desktop Environments]] |
Latest revision as of 10:23, 12 August 2024
The MATE Desktop Environment is the continuation of GNOME 2. It provides an intuitive and attractive desktop environment using traditional metaphors for Linux and other Unix-like operating systems.
- Create a non-privileged user account for security reasons, if you skipped this step during Installation.
- Enable community repository. Setup-desktop script automatically does this for you.
- Install graphics driver for your video hardware.
Installation using setup-desktop
The Alpine Linux script for setting up a desktop quickly is setup-desktop.
# setup-desktop
On running the above command, you will be prompted to select a desktop environment.
Which desktop environment? ('gnome', 'plasma', 'xfce', 'mate', 'sway' or 'none') [none]
Once you have chosen a desktop environment, this script installs the chosen desktop along with all the necessary packages, firefox browser and adds the necessary services to run on startup. You can reboot when complete and the system will boot into a graphical login screen with the desktop environment. Depending on the desktop chosen, the script also activates the necessary services like dbus, elogind, login manager etc..
To view all the packages that are installed by the script for the chosen desktop you can issue the below command:
# cat /sbin/setup-desktop
Manual Installation
Prerequisites
- Install Xorg
- Install and configure D-Bus with X11 add-ons
# 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 installation 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