aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
Commit message (Collapse)AuthorAge
* Another fix for the default config file copy order.Ken Moore2019-03-23
| | | | Verified this is all working now.
* Fix up the loading order for initial file copies.Ken Moore2019-03-23
| | | | This should ensure the template files are copied before the system settings are loaded to change the templates.
* Ensure that the theme engine and Qt-no-glib environment variables are always ↵Ken Moore2019-03-16
| | | | checked/set by lumina-open
* Add a new system config entry: theme.fluxboxKen Moore2019-03-13
| | | | This will change the fluxbox style/theme to the designated item.
* Make sure that if a blank compton.conf exists, that it is properly replaced ↵Ken Moore2019-03-12
| | | | with the "real" conf.
* A couple changes for compositing:Ken Moore2019-03-12
| | | | | 1. Always use the glx backend for compton. xrender or hybrid causes flickering. 2. Always copy over the compton.conf and get that setup even if compton is not used. This will also check/replace a blank compton.conf file.
* Make sure that the start menu is "activated" when opened so that it always ↵Ken Moore2019-03-08
| | | | has keyboard focus.
* Two fixes for icons:Ken Moore2019-02-28
| | | | | | | 1. Fix invalid *.desktop registrations where the Icon field is a relative filename WITH an extension. Icons from the theme are supposed to be name only (no extension), while absolute file paths are supposed to include the extension. 2. Fix up the detection/usage of non-theme icons within LFileInfo. Also add a simple icon() function for LFileInfo to handle the 3 different types of icon file returns.
* Quick fix for running the intel_backlight utility on FreeBSDKen Moore2019-02-09
|
* Make sure the applauncher panel plugin uses the same LFileInfo class as ↵Ken Moore2019-01-27
| | | | other tools.
* Fix up all the community links and copyright years in lumina-info.Ken Moore2019-01-27
|
* Try to fix the start menu search lockup.Ken Moore2019-01-26
| | | | Seems to fix it here, although I get a little bit of graphical artifacting while replacing the app menu items.
* Make the minimum size of the page buttons larger in the lthemeengine UI.Ken Moore2019-01-26
|
* Adjust the cleanup of old QPalette within lthemeengine plugin.Ken Moore2019-01-18
| | | | | Closes #638 This seems to prevent race conditions when switching between two palettes in the application
* Track a Qt change with Qt 5.12:Ken Moore2019-01-15
| | | | | They added a new color to the QPalette class, which was throwing off the settings-load system. Make the settings-load system more robust by supporting files which had fewer colors specified (backwards compatible), while also updating the palette editor to add support for the new color.
* Switches from keeping links in a QHash to a std::vector. This fixes some ↵joe berner2018-12-18
| | | | race conditions on key insertion from multiple threads.
* Update BootSplash.cppKen Moore2018-11-16
| | | Add ${PREFIX}/bin/ to the search paths for the lumina-motd file.
* Fix a compilation error with loading the default quotes option.Ken Moore2018-11-05
| | | | Closes #632
* Cleanup a little bit of the startup quote fetching system.Ken Moore2018-10-22
| | | | No real change - just checking things.
* Remove all the pc-updatemanager usage from Lumina (FreeBSD)Ken Moore2018-10-09
| | | | Replace it with trueos-update integrations
* Make the panel compositing toggle based on whether compton is running.Ken Moore2018-10-08
|
* Fix a quick typo in the session environment setup.Ken Moore2018-10-04
|
* Some minor cleanup. Nothing much changedKen Moore2018-10-02
|
* Just a bunch of whitespace fixesKen Moore2018-10-01
|
* Make the GLX/Hybrid usage for compton a bit smarter. Still prefer glx-only ↵Ken Moore2018-09-13
| | | | if that is detected, only use hybrid otherwise.
* Merge pull request #622 from chenliangomc/masterKen Moore2018-09-10
|\ | | | | update class declaration
| * update class declarationLiang Chen2018-09-07
| |
* | Make sure that the compositor process (compton) is properly ↵Ken Moore2018-09-10
| | | | | | | | watching/updating if the config changes
* | Make sure that we point compton at the right config file when starting it.Ken Moore2018-09-10
|/
* Turn off the "fake" compositing overlay for the panelsKen Moore2018-09-07
|
* Fix up the launching of the desktop sessionKen Moore2018-09-06
| | | | | | 1. Clear out the lockfiles for a session before launching it 2. Provide some mechanisms for returning lockfile paths without creating a new single-instance session. 3. A couple other random commits I still had staged on my laptop (settings menu tweak)
* Checkpoint commit for some uncommitted changed to lumina-desktop-unifiedKen Moore2018-09-06
|
* Ensure that the Fluxbox background/wallpaper setter is disabled before ↵Ken Moore2018-09-06
| | | | Lumina starts it up
* When a desktop is resized automatically re-do the wallpaper as well.Ken Moore2018-09-06
|
* Fix a typo in the names of the new desktop-icons styles.Ken Moore2018-08-30
|
* Split the background coloration of the desktop items into a separate style file.Ken Moore2018-08-27
| | | | This allows the desktop icons to be transparent-background by default, or add the other style as well for the boxy/glass look.
* A few fixes for Lumina:Ken Moore2018-08-22
| | | | | | | | | 1. Adjust the pkg-plist for FreeBSD to include the trident-dark color file. 2. Add a new function for fetching XDG standard directory paths (and create dir as needed) 3. Setup the desktop and lib classes to use the XDG standard path function now. 4. Add a bunch of fallback icons if the "start-here-lumina" icon could not be found in the current theme. These are all based on the OS name. 5. Ensure we run "xdg-user-dirs-update" before launching the session (if it is installed). This is used for the main standard dir detection. 6. Ensure that start-lumina-desktop *always* starts a new desktop session (bypassing any existing lock files for the desktop session).
* update trident dark colorsq5sys2018-07-10
|
* Rip out the initialization of drag and drop on applauncher desktop plugins.Ken Moore2018-06-07
| | | | Have it move the plugin on the desktop instead, but it can also be "dropped" into applications and get used as a drag-n-drop operation.
* Remove the xscreensaver return code check, apparently it is now erratic ↵Ken Moore2018-06-07
| | | | regarding whether it returns 0 or 1 - even if it succeeds both times. Go ahead and assume success for any xscreensaver call.
* Get more of the tray icon reading put together.Ken Moore2018-06-06
| | | | Cleanup some whitespace and turn off some debugging
* Fix up the crash on resize.Ken Moore2018-06-05
| | | | Turns out Qt will crash if you send multiple resize requests really quickly. Add a 10ms cache/delay to the resize and that fixes it.
* Try to get the window resizes working.Ken Moore2018-06-05
| | | | Not done yet - got the timer warnings fixed, and did more thread-safe conversions.
* Get the window movement working, and mouse cursor changes on mouseover ↵Ken Moore2018-06-05
| | | | | | working as well. Resizing a window will crash things at the moment - still looking into that...
* Fix up the window frame borders.Ken Moore2018-06-05
| | | | Now they are the right sizes.
* Get the panels/plugins updating appropriately when the settings file changes.Ken Moore2018-06-05
|
* Fix the compositing force flag. Missed one of the if setting checks earlier.Ken Moore2018-06-05
|
* Add a quick option to allow forcing compositing on when starting up lumina.Ken Moore2018-06-05
|
* Create README.mdKen Moore2018-05-24
|
* Add the NativeEmbedWidget.h file to git (forgot to include previously)Ken Moore2018-05-23
|
bgstack15