aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/defaults/luminaDesktop.conf
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-16 11:41:51 -0400
committerKen Moore <moorekou@gmail.com>2016-06-16 11:41:51 -0400
commit3507d048bef5a1c3565b0f60e329a999a691a4c3 (patch)
tree78f5a0a5d95f19bbf399291bf90bcaa196f6b284 /src-qt5/core/lumina-desktop/defaults/luminaDesktop.conf
parentAdjust the default keyboard shortcuts a bit to try and avoid conflicts betwee... (diff)
downloadlumina-3507d048bef5a1c3565b0f60e329a999a691a4c3.tar.gz
lumina-3507d048bef5a1c3565b0f60e329a999a691a4c3.tar.bz2
lumina-3507d048bef5a1c3565b0f60e329a999a691a4c3.zip
Another round of small bug fixes/tweaks:
1) Fix up the desktopbar plugin to work with the new file locations for configs. 2) Fix up the replacement of the "~/" prefix on a file path with the users home dir. 3) Add default favorites for the ~/[Documents, Downloads, Pictures, Videos] directories. 4) Add the ability to specify quicklaunch apps within luminaDesktop.conf (almost the same as the favorites options). 5) Another couple tweaks for the Glass theme. 6) Have the non-applauncher desktop plugins fill in from the bottom-right of the screen. This provides automatic separation between the auto-generated launchers and other plugins. 7) Add a second, auto-hidden panel at the top of the primary screen by default with the desktopbar plugin there (for instance access to favorites & ~/Desktop files/dirs)
Diffstat (limited to 'src-qt5/core/lumina-desktop/defaults/luminaDesktop.conf')
-rw-r--r--src-qt5/core/lumina-desktop/defaults/luminaDesktop.conf19
1 files changed, 17 insertions, 2 deletions
diff --git a/src-qt5/core/lumina-desktop/defaults/luminaDesktop.conf b/src-qt5/core/lumina-desktop/defaults/luminaDesktop.conf
index 4eabfb70..318bb0f9 100644
--- a/src-qt5/core/lumina-desktop/defaults/luminaDesktop.conf
+++ b/src-qt5/core/lumina-desktop/defaults/luminaDesktop.conf
@@ -54,7 +54,7 @@ theme_font=Arial #Name of the font family to use
theme_fontsize=10pt #Default size of the fonts to use on the desktop (can also use a percentage of the screen height (<number>%) )
#DESKTOP SETTINGS (used for the primary screen in multi-screen setups)
-desktop_visiblepanels=1 #[0 - 12] The number of panels visible by default
+desktop_visiblepanels=2 #[0 - 12] The number of panels visible by default
#desktop.backgroundfiles= #list of absolute file paths for image files (disable for Lumina default)
desktop_backgroundrotateminutes=5 #[positive integer] number of minutes between background rotations (if multiple files)
desktop_plugins=rssreader #list of plugins to be shown on the desktop by default
@@ -62,12 +62,19 @@ desktop_generate_icons=true #[true/false] Auto-generate launchers for ~/Desktop
#PANEL SETTINGS (preface with panel1.<setting> or panel2.<setting>, depending on the number of panels you have visible by default)
panel1_location=bottom #[top/bottom/left/right] Screen edge the panel should be on
-panel1_pixelsize=4%H #number of pixels wide/high the panel should be (or <number>%[W/H] for a percentage of the screen width/height)
+panel1_pixelsize=3.5%H #number of pixels wide/high the panel should be (or <number>%[W/H] for a percentage of the screen width/height)
panel1_autohide=false #[true/false] Have the panel become visible on mouse-over
panel1_plugins=systemstart, taskmanager-nogroups, spacer, systemtray, clock #list of plugins for the panel
panel1_pinlocation=center #[left/center/right] Note:[left/right] corresponds to [top/bottom] for vertical panels
panel1_edgepercent=99 #[1->100] percentage of the screen edge to use
+panel2_location=top
+panel2_pixelsize=3%H
+panel2_autohide=true
+panel2_plugins=spacer, desktopbar, spacer
+panel2_pinlocation=center
+panel2_edgepercent=10
+
#MENU SETTINGS (right-click menu)
menu_plugins=terminal, filemanager, applications, line, settings #list of menu plugins to show
@@ -83,3 +90,11 @@ favorites_add_ifexists=trojita.desktop
favorites_add_ifexists=smplayer.desktop
favorites_add_ifexists=vlc.desktop
favorites_add_ifexists=pithos.desktop
+favorites_add_ifexists=~/Documents
+favorites_add_ifexists=~/Downloads
+favorites_add_ifexists=~/Pictures
+favorites_add_ifexists=~/Videos
+
+#QUICKLAUNCH CUSTOMIZATION (requires the use of the "systemstart" panel plugin)
+#quicklaunch_add=<file/dir path> #Create a quicklaunch shortcut for this file/dir
+#quicklaunch_add_ifexists=<file/dir path> #Create a quicklaunch shortcut for this file/dir if the file/dir exists
bgstack15