Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Update the "Glass" theme and colors a bit. | Ken Moore | 2016-07-25 |
| | |||
* | Merge branch 'master' of github.com:trueos/lumina | Ken Moore | 2016-07-25 |
|\ | |||
| * | Update the TrueOS defaults to include qterminal if it is installed. | Ken Moore | 2016-07-22 |
| | | |||
* | | Setup the copy over of the default compton.conf as needed. | Ken Moore | 2016-07-25 |
| | | |||
* | | Ensure that a default compton.conf file is distributed with Lumina. | Ken Moore | 2016-07-25 |
|/ | |||
* | Fix up the screen brightness detection on FreeBSD (found a logic reversal). | Ken Moore | 2016-07-22 |
| | |||
* | Minor tweak to the FreeBSD OS backend for screen brightness. | Ken Moore | 2016-07-22 |
| | |||
* | [INTERFACE CHANGE] | Ken Moore | 2016-07-20 |
| | | | | As recommended by docs team, the lumina-info interface has been streamlined a bit so there are individual buttons for each of the external links instead of the label/URL pairings. | ||
* | Ensure that Desktop files which are symlinks to known favorites do not show ↵ | Ken Moore | 2016-07-19 |
| | | | | up as duplicates within the "favorites" tab in the user menu. | ||
* | Add an "enableCompositing" flag to the sessionsettings.conf file which ↵ | Ken Moore | 2016-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 Moore | 2016-07-18 |
| | | | | file as well. | ||
* | Don't embed the fluxbox config files into the lumina-desktop binary (using ↵ | Ken Moore | 2016-07-18 |
| | | | | the pre-installed files instead). | ||
* | Fix up the copy/adjustment of the fluxbox config files when initializing the ↵ | Ken Moore | 2016-07-18 |
| | | | | user's settings for Lumina. | ||
* | Fix the xterm title gibberish issue. | Ken Moore | 2016-07-07 |
| | |||
* | Fix a crash when right-clicking a non-applauncher desktop plugin and ↵ | Ken Moore | 2016-07-07 |
| | | | | removing it. | ||
* | Merge branch 'master' of github.com:trueos/lumina | Ken Moore | 2016-07-07 |
|\ | |||
| * | Merge branch 'master' of github.com:trueos/lumina | Ken Moore | 2016-07-06 |
| |\ | |||
| * | | Enable starting fluxbox within the start-lumina-desktop utility ↵ | Ken Moore | 2016-07-06 |
| | | | | | | | | | | | | (lumina-session). | ||
* | | | Fix up the loading of non-integer values for the panel height. | Ken Moore | 2016-07-07 |
| |/ |/| | |||
* | | Merge branch 'master' of github.com:trueos/lumina | Ken Moore | 2016-07-06 |
|\| | |||
| * | Fix up the reloading of compton when the config file changes. | Ken Moore | 2016-07-06 |
| | | |||
* | | Disable fluxbox initialization within the lumina-desktop binary. (moved to ↵ | Ken Moore | 2016-07-06 |
|/ | | | | start-lumina-desktop). | ||
* | Setup the session process launcher to provide the capability of prompting ↵ | Ken Moore | 2016-07-06 |
| | | | | fluxbox and/or compton to reload it's configs when they change. | ||
* | Fix a crash within the userbutton plugin which would happen after clearing ↵ | Ken Moore | 2016-07-06 |
| | | | | out one of the scroll areas. | ||
* | Update the FreeBSD OS class a tiny bit: | Ken Moore | 2016-07-06 |
| | | | | | 1) Update the control panel link to point to SysAdm-client (old control panel is obsolete). 2) Ensure the system validity checks during the screen brightness routine are only run once per session rather than every time (since the type of system will not change over time) | ||
* | Setup the compton init system to use a special config file just for Lumina. ↵ | Ken Moore | 2016-07-05 |
| | | | | This allows use to integrate an editor for that config file into lumina-config later. | ||
* | Fix the TrueOS default settings. | Ken Moore | 2016-07-05 |
| | |||
* | Setup Lumina to use "compton" for the compositing manager instead of ↵ | Ken Moore | 2016-07-01 |
| | | | | xcompmgr (if it is installed) | ||
* | Add the new JSON menu generation scripts to the "core" files installed ↵ | Ken Moore | 2016-07-01 |
| | | | | (since they are basically another type of plugin). | ||
* | Ensure that the quick command run routine will never hang the system for ↵ | Ken Moore | 2016-06-30 |
| | | | | more than 1 second of inactivity from the subprocess. | ||
* | Finish up the new JSON recursive menu system as well as the test script for ↵ | Ken Moore | 2016-06-30 |
| | | | | listing the contents of a directory recursively. | ||
* | Merge branch 'master' of github.com:trueos/lumina | Ken Moore | 2016-06-30 |
|\ | |||
| * | Add a new type of menu plugin: jsonmenu | Ken Moore | 2016-06-29 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a recursive, auto-generating menu which runs an external utility (a script of some kind usually), which generates a JSON document/object which is used to populate the menu. Syntax: (Per object) { "type" : "item", "icon" : "icon name (optional)", "action" : "something lumina-open can run (optional)" } Or for a recursive menu generation { "type" : "jsonmenu", "exec" : "some command to run to populate menu", "icon" : "icon name (optional)" } Example for a full return: { "Item1" : { "type" : "item", "icon" : "folder", "action" : "~/item1.jpg" }, "Menu1" : { "type" : "jsonmenu", "exec" : "some script", "icon" : "system-run" } } Item1 will open ~/item1.jpg with lumina-open when clicked, while Menu1 will call "some script" to generate a new menu with additional options. } | ||
| * | A minor tweak to the "Glass" theme. | Ken Moore | 2016-06-29 |
| | | |||
| * | Add options for grouped windows in the task manager: | Ken Moore | 2016-06-29 |
| | | | | | | | | | | | | Show All Windows Minimize All Windows Close All Windows | ||
| * | Fix up the resizeMenu's mouse event handling to ensure it keeps control of ↵ | Ken Moore | 2016-06-29 |
| | | | | | | | | the mouse during resize events. | ||
| * | Merge branch 'master' of github.com:trueos/lumina | Ken Moore | 2016-06-29 |
| |\ | |||
| * | | Add Control+[shift]+Tab shortcuts for cycling between open windows in ↵ | Ken Moore | 2016-06-29 |
| | | | | | | | | | | | | grouped-order rather than open order (alt+[shift]+tab will do open order). | ||
* | | | Tag version 1.0.0-Devel on the source tree (master branch) | Ken Moore | 2016-06-28 |
| |/ |/| | |||
* | | Tag version 0.9.1-Release. | Ken Moore | 2016-06-28 |
| | | |||
* | | Update the coming-soon 0.9.1 port makefile for FreeBSD, and also setup the ↵ | Ken Moore | 2016-06-28 |
| | | | | | | | | "DEFAULT_SETTINGS=<OS>" build flag for installing config files or desktop wallpapers for other OS's. | ||
* | | Cleanup the build system for how the special OS-specific config ↵ | Ken Moore | 2016-06-28 |
| | | | | | | | | file/wallpaper are added into the build. This now means that we can commit any generic *-${OS}.[jpg/conf] here to the defaults directory and it will automatically get pulled in at build time. | ||
* | | Commit some WIP (but disabled) to get the panels using the compositing WM ↵ | Ken Moore | 2016-06-28 |
| | | | | | | | | for transparency effects (issues with xcompmgr at the moment?). | ||
* | | Add files via upload | q5sys | 2016-06-28 |
| | | |||
* | | adding logo file | q5sys | 2016-06-23 |
| | | |||
* | | updating qrc | q5sys | 2016-06-23 |
| | | |||
* | | Changing PC-BSD logo to TrueOS logo | q5sys | 2016-06-23 |
| | | |||
* | | Change references to PC-BSD to TrueOS | q5sys | 2016-06-23 |
|/ | |||
* | Get the new lumina-config UI all setup and tied into the build for ↵ | Ken Moore | 2016-06-22 |
| | | | | compilation checks (old UI still actually used at the moment though) | ||
* | Turn off the "autoraise" feature of Fluxbox by default. | Ken Moore | 2016-06-21 |
| |