Abuse filter log

From Gentoo Wiki
Abuse Filter navigation (Home | Recent filter changes | Examine past edits | Abuse log)
Jump to:navigation Jump to:search
Details for log entry 5,039

23:12, 21 March 2025: Powerslaty (talk | contribs) triggered filter 30, performing the action "edit" on Maui shell. Actions taken: Disallow; Filter description: Disable writing internal wiki links as external besides required links. If absolutely necessary, use wiki.g.o as a workaround. (examine)

Changes made in edit

 +
= Installing Maui Shell on Gentoo Linux =
  
 +
Maui Shell is a modern, convergent desktop shell designed for Linux desktops, tablets, and phones. It offers a clean, adaptable interface built on KDE technologies and supports both X11 and Wayland. This guide outlines how to install Maui Shell on Gentoo Linux.
 +
 +
== Overview ==
 +
Maui Shell consists of two main components:
 +
- **Cask**: The shell container managing panels, popups, cards, and other UI elements.
 +
- **Zpace**: The compositor responsible for window layout and workspace management.
 +
 +
It is designed to adapt to different form factors, offering a seamless experience across desktops and mobile devices.
 +
 +
== Dependencies ==
 +
Before installing Maui Shell, ensure the following dependencies are installed:
 +
* **KDE Frameworks**: Provides integration with KDE technologies.
 +
* **Qt 5/6**: Required for graphical interface.
 +
* **Wayland**: For modern display protocol support.
 +
* **CMake**: To build the source code.
 +
 +
== Installation Steps ==
 +
 +
=== 1. Prepare Your System ===
 +
Update your system to ensure all packages are up-to-date:
 +
<pre>
 +
emerge --sync
 +
emerge -uDNav @world
 +
</pre>
 +
 +
Install essential build tools:
 +
<pre>
 +
emerge --ask dev-util/cmake dev-vcs/git sys-devel/gcc
 +
</pre>
 +
 +
=== 2. Add Required USE Flags ===
 +
Enable USE flags for Wayland and Qt:
 +
<pre>
 +
echo "gui-libs/qtwayland wayland" >> /etc/portage/package.use
 +
echo "dev-qt/qtgui egl" >> /etc/portage/package.use
 +
</pre>
 +
 +
Rebuild packages to apply the new USE flags:
 +
<pre>
 +
emerge --ask --newuse --deep @world
 +
</pre>
 +
 +
=== 3. Clone the Maui Shell Repository ===
 +
Clone the official Maui Shell repository from GitHub:
 +
<pre>
 +
git clone https://github.com/Nitrux/maui-shell.git
 +
cd maui-shell
 +
</pre>
 +
 +
=== 4. Build and Install ===
 +
Create a build directory and configure the build:
 +
<pre>
 +
mkdir build && cd build
 +
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
 +
</pre>
 +
 +
Compile and install Maui Shell:
 +
<pre>
 +
make -j$(nproc)
 +
make install
 +
</pre>
 +
 +
=== 5. Configure Wayland ===
 +
Ensure your system is configured for Wayland. Install `sddm` as a display manager if not already installed:
 +
<pre>
 +
emerge --ask x11-misc/sddm
 +
</pre>
 +
 +
Edit `/etc/sddm.conf` to enable Wayland support:
 +
<pre>
 +
[Wayland]
 +
Enable=true
 +
</pre>
 +
 +
=== 6. Launch Maui Shell ===
 +
Reboot your system and select "Maui Shell" from the session options in your display manager.
 +
 +
== Running Maui Shell ==
 +
You can also test Maui Shell in an X11 session by running:
 +
<pre>
 +
cask -w
 +
</pre>
 +
This launches Cask in window mode, allowing you to emulate tablet or phone form factors.
 +
 +
For a Wayland session, use:
 +
<pre>
 +
startcask-wayland
 +
</pre>
 +
 +
To generate logs for debugging:
 +
<pre>
 +
cask -l /tmp/cask.log
 +
</pre>
 +
 +
Ensure your user is part of the `input` group for proper input functionality:
 +
<pre>
 +
sudo usermod -aG input $USER
 +
</pre>
 +
 +
== Troubleshooting ==
 +
- If the session fails to start, check logs in `~/.local/share/sddm`.
 +
- Ensure all dependencies are installed correctly.
 +
- Report issues on the [Maui Shell GitHub page](https://github.com/Nitrux/maui-shell).
 +
 +
== External Links ==
 +
* [Maui Project Official Website](https://mauiproject.org)
 +
* [GitHub Repository](https://github.com/Nitrux/maui-shell)
 +
* [Gentoo Handbook](https://wiki.gentoo.org/wiki/Handbook:AMD64)
 +
 +
== See Also ==
 +
* [[KDE Plasma]] - Another KDE-based desktop environment.
 +
* [[Wayland]] - Information on configuring Wayland in Gentoo.
 +
 +
[[Category:Desktop environments]]
 +
[[Category:Gentoo Linux]]
 +
[[Category:Maui Project]]

Action parameters

VariableValue
Edit count of the user (user_editcount)
3
Name of the user account (user_name)
'Powerslaty'
Age of the user account (user_age)
464771
Page ID (page_id)
0
Page namespace (page_namespace)
0
Page title (without namespace) (page_title)
'Maui shell'
Full page title (page_prefixedtitle)
'Maui shell'
Action (action)
'edit'
Edit summary/reason (summary)
'A guide on how to install the Maui shell in Gentoo linux '
Old content model (old_content_model)
''
New content model (new_content_model)
'wikitext'
Old page wikitext, before the edit (old_wikitext)
''
New page wikitext, after the edit (new_wikitext)
'= Installing Maui Shell on Gentoo Linux = Maui Shell is a modern, convergent desktop shell designed for Linux desktops, tablets, and phones. It offers a clean, adaptable interface built on KDE technologies and supports both X11 and Wayland. This guide outlines how to install Maui Shell on Gentoo Linux. == Overview == Maui Shell consists of two main components: - **Cask**: The shell container managing panels, popups, cards, and other UI elements. - **Zpace**: The compositor responsible for window layout and workspace management. It is designed to adapt to different form factors, offering a seamless experience across desktops and mobile devices. == Dependencies == Before installing Maui Shell, ensure the following dependencies are installed: * **KDE Frameworks**: Provides integration with KDE technologies. * **Qt 5/6**: Required for graphical interface. * **Wayland**: For modern display protocol support. * **CMake**: To build the source code. == Installation Steps == === 1. Prepare Your System === Update your system to ensure all packages are up-to-date: <pre> emerge --sync emerge -uDNav @world </pre> Install essential build tools: <pre> emerge --ask dev-util/cmake dev-vcs/git sys-devel/gcc </pre> === 2. Add Required USE Flags === Enable USE flags for Wayland and Qt: <pre> echo "gui-libs/qtwayland wayland" >> /etc/portage/package.use echo "dev-qt/qtgui egl" >> /etc/portage/package.use </pre> Rebuild packages to apply the new USE flags: <pre> emerge --ask --newuse --deep @world </pre> === 3. Clone the Maui Shell Repository === Clone the official Maui Shell repository from GitHub: <pre> git clone https://github.com/Nitrux/maui-shell.git cd maui-shell </pre> === 4. Build and Install === Create a build directory and configure the build: <pre> mkdir build && cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release </pre> Compile and install Maui Shell: <pre> make -j$(nproc) make install </pre> === 5. Configure Wayland === Ensure your system is configured for Wayland. Install `sddm` as a display manager if not already installed: <pre> emerge --ask x11-misc/sddm </pre> Edit `/etc/sddm.conf` to enable Wayland support: <pre> [Wayland] Enable=true </pre> === 6. Launch Maui Shell === Reboot your system and select "Maui Shell" from the session options in your display manager. == Running Maui Shell == You can also test Maui Shell in an X11 session by running: <pre> cask -w </pre> This launches Cask in window mode, allowing you to emulate tablet or phone form factors. For a Wayland session, use: <pre> startcask-wayland </pre> To generate logs for debugging: <pre> cask -l /tmp/cask.log </pre> Ensure your user is part of the `input` group for proper input functionality: <pre> sudo usermod -aG input $USER </pre> == Troubleshooting == - If the session fails to start, check logs in `~/.local/share/sddm`. - Ensure all dependencies are installed correctly. - Report issues on the [Maui Shell GitHub page](https://github.com/Nitrux/maui-shell). == External Links == * [Maui Project Official Website](https://mauiproject.org) * [GitHub Repository](https://github.com/Nitrux/maui-shell) * [Gentoo Handbook](https://wiki.gentoo.org/wiki/Handbook:AMD64) == See Also == * [[KDE Plasma]] - Another KDE-based desktop environment. * [[Wayland]] - Information on configuring Wayland in Gentoo. [[Category:Desktop environments]] [[Category:Gentoo Linux]] [[Category:Maui Project]]'
Unified diff of changes made by edit (edit_diff)
'@@ -1,0 +1,118 @@ += Installing Maui Shell on Gentoo Linux = + +Maui Shell is a modern, convergent desktop shell designed for Linux desktops, tablets, and phones. It offers a clean, adaptable interface built on KDE technologies and supports both X11 and Wayland. This guide outlines how to install Maui Shell on Gentoo Linux. + +== Overview == +Maui Shell consists of two main components: +- **Cask**: The shell container managing panels, popups, cards, and other UI elements. +- **Zpace**: The compositor responsible for window layout and workspace management. + +It is designed to adapt to different form factors, offering a seamless experience across desktops and mobile devices. + +== Dependencies == +Before installing Maui Shell, ensure the following dependencies are installed: +* **KDE Frameworks**: Provides integration with KDE technologies. +* **Qt 5/6**: Required for graphical interface. +* **Wayland**: For modern display protocol support. +* **CMake**: To build the source code. + +== Installation Steps == + +=== 1. Prepare Your System === +Update your system to ensure all packages are up-to-date: +<pre> +emerge --sync +emerge -uDNav @world +</pre> + +Install essential build tools: +<pre> +emerge --ask dev-util/cmake dev-vcs/git sys-devel/gcc +</pre> + +=== 2. Add Required USE Flags === +Enable USE flags for Wayland and Qt: +<pre> +echo "gui-libs/qtwayland wayland" >> /etc/portage/package.use +echo "dev-qt/qtgui egl" >> /etc/portage/package.use +</pre> + +Rebuild packages to apply the new USE flags: +<pre> +emerge --ask --newuse --deep @world +</pre> + +=== 3. Clone the Maui Shell Repository === +Clone the official Maui Shell repository from GitHub: +<pre> +git clone https://github.com/Nitrux/maui-shell.git +cd maui-shell +</pre> + +=== 4. Build and Install === +Create a build directory and configure the build: +<pre> +mkdir build && cd build +cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release +</pre> + +Compile and install Maui Shell: +<pre> +make -j$(nproc) +make install +</pre> + +=== 5. Configure Wayland === +Ensure your system is configured for Wayland. Install `sddm` as a display manager if not already installed: +<pre> +emerge --ask x11-misc/sddm +</pre> + +Edit `/etc/sddm.conf` to enable Wayland support: +<pre> +[Wayland] +Enable=true +</pre> + +=== 6. Launch Maui Shell === +Reboot your system and select "Maui Shell" from the session options in your display manager. + +== Running Maui Shell == +You can also test Maui Shell in an X11 session by running: +<pre> +cask -w +</pre> +This launches Cask in window mode, allowing you to emulate tablet or phone form factors. + +For a Wayland session, use: +<pre> +startcask-wayland +</pre> + +To generate logs for debugging: +<pre> +cask -l /tmp/cask.log +</pre> + +Ensure your user is part of the `input` group for proper input functionality: +<pre> +sudo usermod -aG input $USER +</pre> + +== Troubleshooting == +- If the session fails to start, check logs in `~/.local/share/sddm`. +- Ensure all dependencies are installed correctly. +- Report issues on the [Maui Shell GitHub page](https://github.com/Nitrux/maui-shell). + +== External Links == +* [Maui Project Official Website](https://mauiproject.org) +* [GitHub Repository](https://github.com/Nitrux/maui-shell) +* [Gentoo Handbook](https://wiki.gentoo.org/wiki/Handbook:AMD64) + +== See Also == +* [[KDE Plasma]] - Another KDE-based desktop environment. +* [[Wayland]] - Information on configuring Wayland in Gentoo. + +[[Category:Desktop environments]] +[[Category:Gentoo Linux]] +[[Category:Maui Project]] '
Old page size (old_size)
0
Lines added in edit (added_lines)
[ 0 => '= Installing Maui Shell on Gentoo Linux =', 1 => '', 2 => 'Maui Shell is a modern, convergent desktop shell designed for Linux desktops, tablets, and phones. It offers a clean, adaptable interface built on KDE technologies and supports both X11 and Wayland. This guide outlines how to install Maui Shell on Gentoo Linux.', 3 => '', 4 => '== Overview ==', 5 => 'Maui Shell consists of two main components:', 6 => '- **Cask**: The shell container managing panels, popups, cards, and other UI elements.', 7 => '- **Zpace**: The compositor responsible for window layout and workspace management.', 8 => '', 9 => 'It is designed to adapt to different form factors, offering a seamless experience across desktops and mobile devices.', 10 => '', 11 => '== Dependencies ==', 12 => 'Before installing Maui Shell, ensure the following dependencies are installed:', 13 => '* **KDE Frameworks**: Provides integration with KDE technologies.', 14 => '* **Qt 5/6**: Required for graphical interface.', 15 => '* **Wayland**: For modern display protocol support.', 16 => '* **CMake**: To build the source code.', 17 => '', 18 => '== Installation Steps ==', 19 => '', 20 => '=== 1. Prepare Your System ===', 21 => 'Update your system to ensure all packages are up-to-date:', 22 => '<pre>', 23 => 'emerge --sync', 24 => 'emerge -uDNav @world', 25 => '</pre>', 26 => '', 27 => 'Install essential build tools:', 28 => '<pre>', 29 => 'emerge --ask dev-util/cmake dev-vcs/git sys-devel/gcc', 30 => '</pre>', 31 => '', 32 => '=== 2. Add Required USE Flags ===', 33 => 'Enable USE flags for Wayland and Qt:', 34 => '<pre>', 35 => 'echo "gui-libs/qtwayland wayland" >> /etc/portage/package.use', 36 => 'echo "dev-qt/qtgui egl" >> /etc/portage/package.use', 37 => '</pre>', 38 => '', 39 => 'Rebuild packages to apply the new USE flags:', 40 => '<pre>', 41 => 'emerge --ask --newuse --deep @world', 42 => '</pre>', 43 => '', 44 => '=== 3. Clone the Maui Shell Repository ===', 45 => 'Clone the official Maui Shell repository from GitHub:', 46 => '<pre>', 47 => 'git clone https://github.com/Nitrux/maui-shell.git', 48 => 'cd maui-shell', 49 => '</pre>', 50 => '', 51 => '=== 4. Build and Install ===', 52 => 'Create a build directory and configure the build:', 53 => '<pre>', 54 => 'mkdir build && cd build', 55 => 'cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release', 56 => '</pre>', 57 => '', 58 => 'Compile and install Maui Shell:', 59 => '<pre>', 60 => 'make -j$(nproc)', 61 => 'make install', 62 => '</pre>', 63 => '', 64 => '=== 5. Configure Wayland ===', 65 => 'Ensure your system is configured for Wayland. Install `sddm` as a display manager if not already installed:', 66 => '<pre>', 67 => 'emerge --ask x11-misc/sddm', 68 => '</pre>', 69 => '', 70 => 'Edit `/etc/sddm.conf` to enable Wayland support:', 71 => '<pre>', 72 => '[Wayland]', 73 => 'Enable=true', 74 => '</pre>', 75 => '', 76 => '=== 6. Launch Maui Shell ===', 77 => 'Reboot your system and select "Maui Shell" from the session options in your display manager.', 78 => '', 79 => '== Running Maui Shell ==', 80 => 'You can also test Maui Shell in an X11 session by running:', 81 => '<pre>', 82 => 'cask -w', 83 => '</pre>', 84 => 'This launches Cask in window mode, allowing you to emulate tablet or phone form factors.', 85 => '', 86 => 'For a Wayland session, use:', 87 => '<pre>', 88 => 'startcask-wayland', 89 => '</pre>', 90 => '', 91 => 'To generate logs for debugging:', 92 => '<pre>', 93 => 'cask -l /tmp/cask.log', 94 => '</pre>', 95 => '', 96 => 'Ensure your user is part of the `input` group for proper input functionality:', 97 => '<pre>', 98 => 'sudo usermod -aG input $USER', 99 => '</pre>', 100 => '', 101 => '== Troubleshooting ==', 102 => '- If the session fails to start, check logs in `~/.local/share/sddm`.', 103 => '- Ensure all dependencies are installed correctly.', 104 => '- Report issues on the [Maui Shell GitHub page](https://github.com/Nitrux/maui-shell).', 105 => '', 106 => '== External Links ==', 107 => '* [Maui Project Official Website](https://mauiproject.org)', 108 => '* [GitHub Repository](https://github.com/Nitrux/maui-shell)', 109 => '* [Gentoo Handbook](https://wiki.gentoo.org/wiki/Handbook:AMD64)', 110 => '', 111 => '== See Also ==', 112 => '* [[KDE Plasma]] - Another KDE-based desktop environment.', 113 => '* [[Wayland]] - Information on configuring Wayland in Gentoo.', 114 => '', 115 => '[[Category:Desktop environments]]', 116 => '[[Category:Gentoo Linux]]', 117 => '[[Category:Maui Project]]' ]
Lines removed in edit (removed_lines)
[]
New page text, stripped of any markup (new_text)
'Contents 1 Installing Maui Shell on Gentoo Linux 1.1 Overview 1.2 Dependencies 1.3 Installation Steps 1.3.1 1. Prepare Your System 1.3.2 2. Add Required USE Flags 1.3.3 3. Clone the Maui Shell Repository 1.3.4 4. Build and Install 1.3.5 5. Configure Wayland 1.3.6 6. Launch Maui Shell 1.4 Running Maui Shell 1.5 Troubleshooting 1.6 External Links 1.7 See Also Installing Maui Shell on Gentoo Linux[modifier] Maui Shell is a modern, convergent desktop shell designed for Linux desktops, tablets, and phones. It offers a clean, adaptable interface built on KDE technologies and supports both X11 and Wayland. This guide outlines how to install Maui Shell on Gentoo Linux. Overview[modifier] Maui Shell consists of two main components: - **Cask**: The shell container managing panels, popups, cards, and other UI elements. - **Zpace**: The compositor responsible for window layout and workspace management. It is designed to adapt to different form factors, offering a seamless experience across desktops and mobile devices. Dependencies[modifier] Before installing Maui Shell, ensure the following dependencies are installed: **KDE Frameworks**: Provides integration with KDE technologies. **Qt 5/6**: Required for graphical interface. **Wayland**: For modern display protocol support. **CMake**: To build the source code. Installation Steps[modifier] 1. Prepare Your System[modifier] Update your system to ensure all packages are up-to-date: emerge --sync emerge -uDNav @world Install essential build tools: emerge --ask dev-util/cmake dev-vcs/git sys-devel/gcc 2. Add Required USE Flags[modifier] Enable USE flags for Wayland and Qt: echo "gui-libs/qtwayland wayland" &gt;&gt; /etc/portage/package.use echo "dev-qt/qtgui egl" &gt;&gt; /etc/portage/package.use Rebuild packages to apply the new USE flags: emerge --ask --newuse --deep @world 3. Clone the Maui Shell Repository[modifier] Clone the official Maui Shell repository from GitHub: git clone https://github.com/Nitrux/maui-shell.git cd maui-shell 4. Build and Install[modifier] Create a build directory and configure the build: mkdir build &amp;&amp; cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release Compile and install Maui Shell: make -j$(nproc) make install 5. Configure Wayland[modifier] Ensure your system is configured for Wayland. Install `sddm` as a display manager if not already installed: emerge --ask x11-misc/sddm Edit `/etc/sddm.conf` to enable Wayland support: [Wayland] Enable=true 6. Launch Maui Shell[modifier] Reboot your system and select "Maui Shell" from the session options in your display manager. Running Maui Shell[modifier] You can also test Maui Shell in an X11 session by running: cask -w This launches Cask in window mode, allowing you to emulate tablet or phone form factors. For a Wayland session, use: startcask-wayland To generate logs for debugging: cask -l /tmp/cask.log Ensure your user is part of the `input` group for proper input functionality: sudo usermod -aG input $USER Troubleshooting[modifier] - If the session fails to start, check logs in `~/.local/share/sddm`. - Ensure all dependencies are installed correctly. - Report issues on the [Maui Shell GitHub page](https://github.com/Nitrux/maui-shell). External Links[modifier] [Maui Project Official Website](https://mauiproject.org) [GitHub Repository](https://github.com/Nitrux/maui-shell) [Gentoo Handbook](https://wiki.gentoo.org/wiki/Handbook:AMD64) See Also[modifier] KDE Plasma - Another KDE-based desktop environment. Wayland - Information on configuring Wayland in Gentoo.'
Parsed HTML source of the new revision (new_html)
'<div class="mw-parser-output"><div id="toc" class="toc" role="navigation" aria-labelledby="mw-toc-heading"><input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="display:none" /><div class="toctitle" lang="en" dir="ltr"><h2 id="mw-toc-heading">Contents</h2><span class="toctogglespan"><label class="toctogglelabel" for="toctogglecheckbox"></label></span></div> <ul> <li class="toclevel-1 tocsection-1"><a href="#Installing_Maui_Shell_on_Gentoo_Linux"><span class="tocnumber">1</span> <span class="toctext">Installing Maui Shell on Gentoo Linux</span></a> <ul> <li class="toclevel-2 tocsection-2"><a href="#Overview"><span class="tocnumber">1.1</span> <span class="toctext">Overview</span></a></li> <li class="toclevel-2 tocsection-3"><a href="#Dependencies"><span class="tocnumber">1.2</span> <span class="toctext">Dependencies</span></a></li> <li class="toclevel-2 tocsection-4"><a href="#Installation_Steps"><span class="tocnumber">1.3</span> <span class="toctext">Installation Steps</span></a> <ul> <li class="toclevel-3 tocsection-5"><a href="#1._Prepare_Your_System"><span class="tocnumber">1.3.1</span> <span class="toctext">1. Prepare Your System</span></a></li> <li class="toclevel-3 tocsection-6"><a href="#2._Add_Required_USE_Flags"><span class="tocnumber">1.3.2</span> <span class="toctext">2. Add Required USE Flags</span></a></li> <li class="toclevel-3 tocsection-7"><a href="#3._Clone_the_Maui_Shell_Repository"><span class="tocnumber">1.3.3</span> <span class="toctext">3. Clone the Maui Shell Repository</span></a></li> <li class="toclevel-3 tocsection-8"><a href="#4._Build_and_Install"><span class="tocnumber">1.3.4</span> <span class="toctext">4. Build and Install</span></a></li> <li class="toclevel-3 tocsection-9"><a href="#5._Configure_Wayland"><span class="tocnumber">1.3.5</span> <span class="toctext">5. Configure Wayland</span></a></li> <li class="toclevel-3 tocsection-10"><a href="#6._Launch_Maui_Shell"><span class="tocnumber">1.3.6</span> <span class="toctext">6. Launch Maui Shell</span></a></li> </ul> </li> <li class="toclevel-2 tocsection-11"><a href="#Running_Maui_Shell"><span class="tocnumber">1.4</span> <span class="toctext">Running Maui Shell</span></a></li> <li class="toclevel-2 tocsection-12"><a href="#Troubleshooting"><span class="tocnumber">1.5</span> <span class="toctext">Troubleshooting</span></a></li> <li class="toclevel-2 tocsection-13"><a href="#External_Links"><span class="tocnumber">1.6</span> <span class="toctext">External Links</span></a></li> <li class="toclevel-2 tocsection-14"><a href="#See_Also"><span class="tocnumber">1.7</span> <span class="toctext">See Also</span></a></li> </ul> </li> </ul> </div> <h1><span class="mw-headline" id="Installing_Maui_Shell_on_Gentoo_Linux">Installing Maui Shell on Gentoo Linux</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=1" title="Modifier la section : Installing Maui Shell on Gentoo Linux">modifier</a><span class="mw-editsection-bracket">]</span></span></h1> <p>Maui Shell is a modern, convergent desktop shell designed for Linux desktops, tablets, and phones. It offers a clean, adaptable interface built on KDE technologies and supports both X11 and Wayland. This guide outlines how to install Maui Shell on Gentoo Linux. </p> <h2><span class="mw-headline" id="Overview">Overview</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=2" title="Modifier la section : Overview">modifier</a><span class="mw-editsection-bracket">]</span></span></h2> <p>Maui Shell consists of two main components: - **Cask**: The shell container managing panels, popups, cards, and other UI elements. - **Zpace**: The compositor responsible for window layout and workspace management. </p><p>It is designed to adapt to different form factors, offering a seamless experience across desktops and mobile devices. </p> <h2><span class="mw-headline" id="Dependencies">Dependencies</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=3" title="Modifier la section : Dependencies">modifier</a><span class="mw-editsection-bracket">]</span></span></h2> <p>Before installing Maui Shell, ensure the following dependencies are installed: </p> <ul><li>**KDE Frameworks**: Provides integration with KDE technologies.</li> <li>**Qt 5/6**: Required for graphical interface.</li> <li>**Wayland**: For modern display protocol support.</li> <li>**CMake**: To build the source code.</li></ul> <h2><span class="mw-headline" id="Installation_Steps">Installation Steps</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=4" title="Modifier la section : Installation Steps">modifier</a><span class="mw-editsection-bracket">]</span></span></h2> <h3><span class="mw-headline" id="1._Prepare_Your_System">1. Prepare Your System</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=5" title="Modifier la section : 1. Prepare Your System">modifier</a><span class="mw-editsection-bracket">]</span></span></h3> <p>Update your system to ensure all packages are up-to-date: </p> <pre>emerge --sync emerge -uDNav @world </pre> <p>Install essential build tools: </p> <pre>emerge --ask dev-util/cmake dev-vcs/git sys-devel/gcc </pre> <h3><span class="mw-headline" id="2._Add_Required_USE_Flags">2. Add Required USE Flags</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=6" title="Modifier la section : 2. Add Required USE Flags">modifier</a><span class="mw-editsection-bracket">]</span></span></h3> <p>Enable USE flags for Wayland and Qt: </p> <pre>echo "gui-libs/qtwayland wayland" &gt;&gt; /etc/portage/package.use echo "dev-qt/qtgui egl" &gt;&gt; /etc/portage/package.use </pre> <p>Rebuild packages to apply the new USE flags: </p> <pre>emerge --ask --newuse --deep @world </pre> <h3><span class="mw-headline" id="3._Clone_the_Maui_Shell_Repository">3. Clone the Maui Shell Repository</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=7" title="Modifier la section : 3. Clone the Maui Shell Repository">modifier</a><span class="mw-editsection-bracket">]</span></span></h3> <p>Clone the official Maui Shell repository from GitHub: </p> <pre>git clone https://github.com/Nitrux/maui-shell.git cd maui-shell </pre> <h3><span class="mw-headline" id="4._Build_and_Install">4. Build and Install</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=8" title="Modifier la section : 4. Build and Install">modifier</a><span class="mw-editsection-bracket">]</span></span></h3> <p>Create a build directory and configure the build: </p> <pre>mkdir build &amp;&amp; cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release </pre> <p>Compile and install Maui Shell: </p> <pre>make -j$(nproc) make install </pre> <h3><span class="mw-headline" id="5._Configure_Wayland">5. Configure Wayland</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=9" title="Modifier la section : 5. Configure Wayland">modifier</a><span class="mw-editsection-bracket">]</span></span></h3> <p>Ensure your system is configured for Wayland. Install `sddm` as a display manager if not already installed: </p> <pre>emerge --ask x11-misc/sddm </pre> <p>Edit `/etc/sddm.conf` to enable Wayland support: </p> <pre>[Wayland] Enable=true </pre> <h3><span class="mw-headline" id="6._Launch_Maui_Shell">6. Launch Maui Shell</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=10" title="Modifier la section : 6. Launch Maui Shell">modifier</a><span class="mw-editsection-bracket">]</span></span></h3> <p>Reboot your system and select "Maui Shell" from the session options in your display manager. </p> <h2><span class="mw-headline" id="Running_Maui_Shell">Running Maui Shell</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=11" title="Modifier la section : Running Maui Shell">modifier</a><span class="mw-editsection-bracket">]</span></span></h2> <p>You can also test Maui Shell in an X11 session by running: </p> <pre>cask -w </pre> <p>This launches Cask in window mode, allowing you to emulate tablet or phone form factors. </p><p>For a Wayland session, use: </p> <pre>startcask-wayland </pre> <p>To generate logs for debugging: </p> <pre>cask -l /tmp/cask.log </pre> <p>Ensure your user is part of the `input` group for proper input functionality: </p> <pre>sudo usermod -aG input $USER </pre> <h2><span class="mw-headline" id="Troubleshooting">Troubleshooting</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=12" title="Modifier la section : Troubleshooting">modifier</a><span class="mw-editsection-bracket">]</span></span></h2> <p>- If the session fails to start, check logs in `~/.local/share/sddm`. - Ensure all dependencies are installed correctly. - Report issues on the [Maui Shell GitHub page](<a rel="nofollow" class="external free" href="https://github.com/Nitrux/maui-shell">https://github.com/Nitrux/maui-shell</a>). </p> <h2><span class="mw-headline" id="External_Links">External Links</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=13" title="Modifier la section : External Links">modifier</a><span class="mw-editsection-bracket">]</span></span></h2> <ul><li>[Maui Project Official Website](<a rel="nofollow" class="external free" href="https://mauiproject.org">https://mauiproject.org</a>)</li> <li>[GitHub Repository](<a rel="nofollow" class="external free" href="https://github.com/Nitrux/maui-shell">https://github.com/Nitrux/maui-shell</a>)</li> <li>[Gentoo Handbook](<a rel="nofollow" class="external free" href="https://wiki.gentoo.org/wiki/Handbook:AMD64">https://wiki.gentoo.org/wiki/Handbook:AMD64</a>)</li></ul> <h2><span class="mw-headline" id="See_Also">See Also</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Maui_shell&amp;action=edit&amp;section=14" title="Modifier la section : See Also">modifier</a><span class="mw-editsection-bracket">]</span></span></h2> <ul><li><a href="/wiki/KDE_Plasma" class="mw-redirect" title="KDE Plasma">KDE Plasma</a> - Another KDE-based desktop environment.</li> <li><a href="/wiki/Wayland" title="Wayland">Wayland</a> - Information on configuring Wayland in Gentoo.</li></ul> '
Unix timestamp of change (timestamp)
1742598757