diff options
author | Ken Moore <ken@pcbsd.org> | 2015-04-20 23:00:11 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-04-20 23:00:11 -0400 |
commit | eff37564f5defc9f586999cadd3cd10798374aac (patch) | |
tree | 540ab19ddaa53938b6376d271d30defc17d5ae21 /lumina-desktop | |
parent | Add a special flag to prevent the lumina-open crash handler from starting up ... (diff) | |
download | lumina-eff37564f5defc9f586999cadd3cd10798374aac.tar.gz lumina-eff37564f5defc9f586999cadd3cd10798374aac.tar.bz2 lumina-eff37564f5defc9f586999cadd3cd10798374aac.zip |
Add the ability to use percentages of the screen for panel sizes (%W for percent of screen width, %H for percent of screen height), as well as a percentage of the screen height for the font size (<number>%, gets converted to a pixel metric)
Some standard percentages for examples:
panel height (top/bottom): between 3%H to 4.5%H
font height: between 1.5% to 2.5%
Also update the default config file to reflect these changes.
Diffstat (limited to 'lumina-desktop')
-rw-r--r-- | lumina-desktop/defaults/luminaDesktop.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lumina-desktop/defaults/luminaDesktop.conf b/lumina-desktop/defaults/luminaDesktop.conf index f35f0654..fe3269ac 100644 --- a/lumina-desktop/defaults/luminaDesktop.conf +++ b/lumina-desktop/defaults/luminaDesktop.conf @@ -14,7 +14,7 @@ # terminal, filemanager, applications, line, settings, windowlist, app::<absolute path to *.desktop file> #GENERAL SESSION SETTINGS -session.enablenumlock=true #[true/false] Enable numlock on login using "numlockx" +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 @@ -23,7 +23,7 @@ session.playlogoutaudio=true #[true/false] Play the audio chimes on log out #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 +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 @@ -34,7 +34,7 @@ desktop.plugins=desktopview #list of plugins to be shown on the desktop by defau #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=30 #number of pixels wide/high the panel should be +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 |