MATE: Difference between revisions
(→Install MATE Desktop: fix typo) |
Prabuanand (talk | contribs) (changes due to Include:Desktop prerequisites and Include:Setup-desktop and fixed some outdated/wrong information) |
||
(26 intermediate revisions by 9 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. | |||
== Prerequisites == | |||
{{ | {{:Include:Desktop prerequisites}} | ||
* [[Alpine_setup_scripts#setup-xorg-base|Install Xorg]] | |||
== Installation using setup-desktop == | |||
{{ | {{:Include:Setup-desktop}} | ||
== | == Manual Installation == | ||
{{Cmd|<nowiki># apk add mate-desktop-environment lxdm adwaita-icon-theme faenza-icon-theme font-dejavu | |||
{{Cmd|<nowiki># apk add mate-desktop-environment | |||
# 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>}} | ||
If you are running your Alpine Linux in [[Diskless Mode]], save the changes:{{Cmd|# lbu ci}} | |||
Try starting dbus and lxdm. This will start the display manager and should allow you to login.{{Cmd|# rc-service lxdm start}} | |||
{{Cmd| | |||
# | |||
If it worked, enable the services to start on reboot {{Cmd|# rc-update add lxdm}} | |||
{{Cmd| | |||
}} | |||
== Configuration == | |||
=== Disabling standby and screensaver === | === Disabling standby and screensaver === | ||
{{Cmd| | Check the current configuration using xset: {{Cmd|# apk add xset | ||
$ xset q}} | $ xset q}} | ||
{{cat|xset q| | {{cat|xset q| | ||
Line 122: | Line 57: | ||
}} | }} | ||
To disable those timers issue the command:{{Cmd|$ xset dpms 0 0 0}} | |||
Santiy check: {{Cmd|$ xset q | grep Standby | |||
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 09:40, 17 March 2025
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.
Prerequisites
- Internet connectivity, unless the packages have been pre-fetched into a local cache.
- A non-root user account.
- The community repository must be enabled.
- Set up eudev.
- Install and configure D-Bus. without D-Bus icons and keyboard shortcuts may be missing.
- Install appropriate Graphics driver drivers for your hardware. Without graphics drivers, errors are likely to occur.
- Install Xorg
Installation using setup-desktop
The Alpine Linux script for quickly setting up a desktop is:
# setup-desktop
On running the above command, you will be prompted to select a desktop environment.
Which desktop environment? ('gnome', 'plasma', 'xfce', 'mate', 'sway', 'lxqt' or 'none') [none]
Once you have chosen a desktop environment, this script installs the chosen desktop along with necessary packages, firefox browser and adds necessary services to run on startup. You can reboot when complete, and the system will boot into a graphical login screen with the chosen desktop environment. To view the packages installed by the script: $ cat /usr/sbin/setup-desktop
Manual Installation
# apk add mate-desktop-environment lxdm adwaita-icon-theme faenza-icon-theme font-dejavu # 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 Linux in Diskless Mode, 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
Configuration
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