aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-session/session.cpp
Commit message (Collapse)AuthorAge
* Setup the WM restart routine to make it more flexible:Ken Moore2017-08-15
| | | | | 1) The WM will be restarted a maximum of twice with crashes less than 5 seconds apart. 2) This makes it more flexible with regards to opeartions which require that fluxbox be restarted (such as changing the screen around).
* Add a wm failure counter to start-lumina-desktop, and restart the process up ↵Ken Moore2017-08-14
| | | | to 3 times maximum.
* Couple trivial changes to some files.Ken Moore2017-08-14
|
* Setup the Lumina 1.x desktop to use the new theme engine by defaultKen Moore2017-08-03
|
* Cleanup the "fluxbox" detection for window manager settings.Ken Moore2017-07-31
|
* Some more debuggingKen Moore2017-06-27
|
* Fix a quick bug in start-lumina-desktop where it would not stop properly if ↵Ken Moore2017-06-15
| | | | one of the main processes like compton was forcibly killed by the user ahead of time.
* Switch the usage of compton: default to it being disabled rather than ↵Ken Moore2017-05-23
| | | | enabled (too many false-positives from the GPU acceleration verification routine).
* Another large batch of work on the new unified desktop.Ken Moore2017-01-26
| | | | | | 1) Get the RootWindow up and functional. 2) Get the lumina-desktop-unified binary functional for starting to test the various pieces (not ready yet for general use) 3) Get the start-lumina-desktop binary setup to launch the new unified binary for testing if the "--unified" flag is used.
* add back ability to use different window managerChristopher Roy Bratusek2017-01-06
|
* Adjust the Qt-crash workaround a bit to try and avoid starting a dbus ↵Ken Moore2016-12-01
| | | | session if possible.
* LARGE UPDATE:Ken Moore2016-11-07
| | | | | | | 1) Dismantle the Lumina library completely. 2) Setup lots of small subproject files (.pri) for the individual classes within the old library. 3) Move all the Lumina binaries to use the new subproject files 4) Split up the LuminaUtils class/files into LUtils and LDesktopUtils (generic utilities, and desktop-specific utilities)
* Large update/refactor of desktop widgets.Ken Moore2016-10-18
| | | | This reduces the number of widgets in the stack by 1, and seems to help performance a bit.
* Fix up the logout bug in Lumina after some changes to the startup routine.Ken Moore2016-10-11
|
* Add a couple more fixes/bypasses to the start-lumina-desktop routine.Ken Moore2016-10-05
| | | | | 1) Make sure when re-calling with xinit, that the full path of the binary is used 2) When starting the desktop, try to detect/launch a temporary dbus session so that Qt can function properly without crashing.
* Adjust the default settings for the new GPU accel detection routine to ↵Ken Moore2016-09-30
| | | | prefer no compositing if GPU accel is not available.
* Add a session option to disable compositing if no GPU acceleration is detectedKen Moore2016-09-29
| | | | sessionsettings.conf: "compositingWithGpuAccelOnly":<bool> (false by default)
* Add auto-detection of GPU acceleration to the start-lumina-desktop utility ↵Ken Moore2016-09-26
| | | | if compton is used, and automatically adjust the compton settings to use GPU accelleration or not. (Requires "glxinfo" utility installed).
* Setup the copy over of the default compton.conf as needed.Ken Moore2016-07-25
|
* Add an "enableCompositing" flag to the sessionsettings.conf file which ↵Ken Moore2016-07-18
| | | | | | | | | determines if the compositor (compton, xcompmgr) is supposed to be started or not. NOTE: This is a hidden option (not available in lumina-config). To disable the compositor the user will need to edit ~/.config/lumina-desktop/sessionsettings.conf by hand and add the following line: enableCompositing=false Then restart Lumina for the changes to take effect.
* Also ensure that the XDG_CONFIG_HOME replacement happens on the fluxbox-init ↵Ken Moore2016-07-18
| | | | file as well.
* Fix up the copy/adjustment of the fluxbox config files when initializing the ↵Ken Moore2016-07-18
| | | | user's settings for Lumina.
* Enable starting fluxbox within the start-lumina-desktop utility ↵Ken Moore2016-07-06
| | | | (lumina-session).
* Setup the session process launcher to provide the capability of prompting ↵Ken Moore2016-07-06
| | | | fluxbox and/or compton to reload it's configs when they change.
* Setup the compton init system to use a special config file just for Lumina. ↵Ken Moore2016-07-05
| | | | This allows use to integrate an editor for that config file into lumina-config later.
* Setup Lumina to use "compton" for the compositing manager instead of ↵Ken Moore2016-07-01
| | | | xcompmgr (if it is installed)
* Get the new lumina-config UI all setup and tied into the build for ↵Ken Moore2016-06-22
| | | | compilation checks (old UI still actually used at the moment though)
* Another large batch of updates:Ken Moore2016-06-14
| | | | | 1) Move the "runtime" directory in the users home to the XDG_CONFIG_HOME/lumina-desktop rather than ~/.lumina 2) Update the Glass theme a bit more.
* Change the name of the main desktop binary from "Lumina-DE" to ↵Ken Moore2016-06-11
| | | | "lumina-desktop" for consistency. This also should catch/fix all those old xsessions/.desktop files floating around which did not make the transition to using the new start-lumina-desktop binary for launching the desktop.
* Add a check for the existence of the log dir before starting the processes.Ken Moore2016-05-06
|
* Fix up the detection/closing of the lumina desktop session. Now the user can ↵Ken Moore2016-04-26
log out again.... :-)
bgstack15