Difference between revisions of "LXQt"

From Funtoo
Jump to navigation Jump to search
(Use epro instead of eselect and make instructions more verbose)
 
(4 intermediate revisions by 4 users not shown)
Line 2: Line 2:


LXQt is a lightweight Desktop environment. Some LXDE developers decided to create a Qt based version of their Desktop environment, it's name was lxde-qt. Around the same time some other people were working on a different minimal Qt based DE called razor-qt. When some developers of those projects met they decided to join forces and work together on one project. LXQt was born.
LXQt is a lightweight Desktop environment. Some LXDE developers decided to create a Qt based version of their Desktop environment, it's name was lxde-qt. Around the same time some other people were working on a different minimal Qt based DE called razor-qt. When some developers of those projects met they decided to join forces and work together on one project. LXQt was born.
=== Qt5 only system ===
LXQt depends only on Qt5, but polkit-qt has automatically set the qt4 USE flag. In case you are sure that you won't install any Qt4 applications which need polkit-qt you can disable Qt4 there resulting in a leaner System. Otherwise emerging LXQt will not just install qtcore-5 but also qtcore-4. In case your goal is to have a minimal, up to date Qt5 based system edit your /etc/portage/package.use file as follows:
{{file|name=/etc/portage/package.use|lang=|desc=add or alter the polkit-qt line|body=
sys-auth/polkit-qt -qt4
}}


== Installation ==
== Installation ==
Line 13: Line 7:
You should have set the desktop flavor before trying to install LXQt, furthermore we recommend setting the LXQt mix-in. These settings will take care of the USE flags that you otherwise have to set by hand.
You should have set the desktop flavor before trying to install LXQt, furthermore we recommend setting the LXQt mix-in. These settings will take care of the USE flags that you otherwise have to set by hand.


Just run epro without any arguments to see your current settings.
Just run {{c|epro}} without any arguments to see your current settings.
{{console|body=
{{console|body=
###i## epro
###i## epro
Line 43: Line 37:
>>> Added lxqt mix-in.
>>> Added lxqt mix-in.


}}
Since lxqt-meta depends on policykit we have to add policykit to consolekit:
{{console|body=
###i## echo "sys-auth/consolekit policykit" >> /etc/portage/package.use
}}
}}


Line 60: Line 49:
You can either use a display manager to log into your system and start LXQt, or you can log in on a TTY and run {{c|startx}} to start xinit by hand.
You can either use a display manager to log into your system and start LXQt, or you can log in on a TTY and run {{c|startx}} to start xinit by hand.


=== xinit ===
=== With a Display (Login) Manager ===


You should edit the file  {{c|~/.xinitrc}} if it already exists, and put {{c|"exec startlxqt"}} in there.
The recommended display manager for LXQt is {{c|sddm}}:
If it doesn't exist you can create it like this:
 
{{console|body=$##i## echo "exec startlxqt" > ~/.xinitrc}}
 
You might want to add the commands and options {{c|ck-launch-session dbus-launch --sh-syntax --exit-with-session}} to the {{c|exec}} to start it with ConsoleKit and DBus.
In this case you also need to add ConsoleKit to the default runlevel:


{{console|body=
{{console|body=
###i## rc-update add consolekit default
# ##i##emerge sddm
###i## rc
# ##i##rc-update add xdm default
}}
}}


After this, configure {{c|/etc/conf.d/xdm}} to use {{c|sddm}} as the system display manager.


 
[[Category:Desktop]]
=== Login Manager ===
[[Category:Official Documentation]]
 
Please take a look at http://www.funtoo.org/Package:XDM_%28Display_Manager%29 for this.

Latest revision as of 21:23, November 19, 2023

About LXQt

LXQt is a lightweight Desktop environment. Some LXDE developers decided to create a Qt based version of their Desktop environment, it's name was lxde-qt. Around the same time some other people were working on a different minimal Qt based DE called razor-qt. When some developers of those projects met they decided to join forces and work together on one project. LXQt was born.

Installation

You should have set the desktop flavor before trying to install LXQt, furthermore we recommend setting the LXQt mix-in. These settings will take care of the USE flags that you otherwise have to set by hand.

Just run epro without any arguments to see your current settings.

root # epro

=== Enabled Profiles: ===

        arch: x86-64bit
       build: current
     subarch: generic_64
      flavor: core
     mix-ins: (not set)

In case you have a output like this. Change it using:

root # epro flavor desktop
root # epro mix-in +lxqt

=== Enabled Profiles: ===

        arch: x86-64bit
       build: current
     subarch: generic_64
      flavor: desktop
     mix-ins: lxqt

>>> Added lxqt mix-in.

Now we are ready to install LXQt.

root # emerge lxqt-meta

Starting LXQt

You can either use a display manager to log into your system and start LXQt, or you can log in on a TTY and run startx to start xinit by hand.

With a Display (Login) Manager

The recommended display manager for LXQt is sddm:

root # emerge sddm
root # rc-update add xdm default

After this, configure /etc/conf.d/xdm to use sddm as the system display manager.