aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/defaults
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-06-11 10:28:19 -0400
committerKen Moore <ken@pcbsd.org>2015-06-11 10:28:19 -0400
commit32af6356e15446d73039037850d2f9620c9bf087 (patch)
treef6083829d2a495a901d456f4bbfba60401d975b4 /lumina-desktop/defaults
parentAdd a new function to LuminaOS: DiskUsage() (diff)
downloadlumina-32af6356e15446d73039037850d2f9620c9bf087.tar.gz
lumina-32af6356e15446d73039037850d2f9620c9bf087.tar.bz2
lumina-32af6356e15446d73039037850d2f9620c9bf087.zip
Update the luminaDesktop.conf file format/syntax a bit. Now it uses "_" as the separation character in variables instead of ".", allowing compatibility with libUCL. (Note: it will still detect the "." separation in variables for backwards compatibility at the moment - might remove this compat once we get ready for 1.0-release in the distant future).
Also add a couple new panel options (pinlocation, edgepercent) allowing the panel to bet setup in a particular location on the designated screen edge.
Diffstat (limited to 'lumina-desktop/defaults')
-rw-r--r--lumina-desktop/defaults/luminaDesktop.conf45
1 files changed, 23 insertions, 22 deletions
diff --git a/lumina-desktop/defaults/luminaDesktop.conf b/lumina-desktop/defaults/luminaDesktop.conf
index 4e885a1b..34ab4c7e 100644
--- a/lumina-desktop/defaults/luminaDesktop.conf
+++ b/lumina-desktop/defaults/luminaDesktop.conf
@@ -15,42 +15,43 @@
# terminal, filemanager, applications, line, settings, windowlist, app::<absolute path to *.desktop file>
#GENERAL SESSION SETTINGS
-session.enablenumlock=false #[true/false] Enable numlock on login using "numlockx"
-session.playloginaudio=true #[true/false] Play the audio chimes on log in
-session.playlogoutaudio=true #[true/false] Play the audio chimes on log out
+session_enablenumlock=false #[true/false] Enable numlock on login using "numlockx"
+session_playloginaudio=true #[true/false] Play the audio chimes on log in
+session_playlogoutaudio=true #[true/false] Play the audio chimes on log out
# DEFAULT UTILITIES
# Provide the full path to *.desktop file, or a binary name which exists on PATH
# *.desktop files provide better support for input formats, and are recommended
-#session.default.terminal=xterm
-#session.default.filemanager=lumina-fm
-#session.default.webbrowser=/usr/local/share/applications/firefox.desktop
-#session.default.email=/usr/local/share/applications/thunderbird.desktop
+#session_default_terminal=xterm
+#session_default_filemanager=lumina-fm
+#session_default_webbrowser=/usr/local/share/applications/firefox.desktop
+#session_default_email=/usr/local/share/applications/thunderbird.desktop
#THEME SETTINGS
#theme.themefile=<file path> #Absolute path to the theme template file to use (disable for Lumina-Default)
#theme.colorfile=<file path> #Absolute path to the color spec file to use for theming
-theme.iconset=oxygen #Name of the icon theme to use
-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>%) )
+theme_iconset=oxygen #Name of the icon theme to use
+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 left-most screen in multi-screen setups)
-desktop.visiblepanels=1 #[0/1/2] The number of panels visible by default
+desktop_visiblepanels=1 #[0/1/2] 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=desktopview #list of plugins to be shown on the desktop by default
+desktop_backgroundrotateminutes=5 #[positive integer] number of minutes between background rotations (if multiple files)
+desktop_plugins=desktopview #list of plugins to be shown on the desktop by default
#PANEL SETTINGS (preface with panel1.<setting> or panel2.<setting>, depending on the number of panels you have visible by default)
-#NOTE: If two panels, they need to be on opposite screen edges (top/bottom or left/right)
-panel1.location=top #[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.autohide=false #[true/false] Have the panel become visible on mouse-over
-panel1.plugins=userbutton, taskmanager, spacer, systemtray, clock, systemdashboard #list of plugins for the panel
+panel1_location=top #[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_autohide=false #[true/false] Have the panel become visible on mouse-over
+panel1_plugins=userbutton, taskmanager, spacer, systemtray, clock, systemdashboard #list of plugins for the panel
+panel1_pinlocation=center #[left/center/right] Note:[left/right] corresponds to [top/bottom] for vertical panels
+panel1_edgepercent=90 #[1->100] percentage of the screen edge to use
#MENU SETTINGS (right-click menu)
-menu.plugins=terminal, filemanager, applications, line, settings #list of menu plugins to show
+menu_plugins=terminal, filemanager, applications, line, settings #list of menu plugins to show
#FAVORITES CUSTOMIZATION
-#favorites.add=<file/dir path> #Create a favorites entry for this file/dir
-#favorites.remove=<file/dir path> #Remove a favorites entry for this file/dir
-#favorites.add.ifexists=<file/dir path> #Create a favorites entry for this file/dir if the file/dir exists
+#favorites_add=<file/dir path> #Create a favorites entry for this file/dir
+#favorites_remove=<file/dir path> #Remove a favorites entry for this file/dir
+#favorites_add_ifexists=<file/dir path> #Create a favorites entry for this file/dir if the file/dir exists
bgstack15