From e69073f48f6b9633f5bc35e91e89acddb0ceb814 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 24 May 2011 10:49:04 -0400 Subject: [PATCH] Initial commit of bbLean config files for bbLean v1.17.1 --- .gitignore | 27 +++++ bbstylemaker.rc | 107 +++++++++++++++++++ blackbox.rc | 54 ++++++++++ bsetroot.rc | 12 +++ extensions.rc | 151 +++++++++++++++++++++++++++ menu.rc | 60 +++++++++++ plugins.rc | 32 ++++++ plugins/bbAnalog/bbAnalog.rc | 14 +++ plugins/bbIconBox/bbIconBox.rc | 124 ++++++++++++++++++++++ plugins/bbKeys/bbKeys.rc | 74 +++++++++++++ plugins/bbLeanBar/bbLeanBar.rc | 71 +++++++++++++ plugins/bbLeanSkin/bbLeanSkin.rc | 70 +++++++++++++ plugins/bbLeanSkin/bbLeanSkinMenu.rc | 23 ++++ plugins/bbLeanSkin/exclusions.rc | 46 ++++++++ plugins/bbSlit/bbSlit.rc | 20 ++++ shellfolders.rc | 50 +++++++++ stickywindows.ini | 9 ++ 17 files changed, 944 insertions(+) create mode 100644 .gitignore create mode 100644 bbstylemaker.rc create mode 100644 blackbox.rc create mode 100644 bsetroot.rc create mode 100644 extensions.rc create mode 100644 menu.rc create mode 100644 plugins.rc create mode 100644 plugins/bbAnalog/bbAnalog.rc create mode 100644 plugins/bbIconBox/bbIconBox.rc create mode 100644 plugins/bbKeys/bbKeys.rc create mode 100644 plugins/bbLeanBar/bbLeanBar.rc create mode 100644 plugins/bbLeanSkin/bbLeanSkin.rc create mode 100644 plugins/bbLeanSkin/bbLeanSkinMenu.rc create mode 100644 plugins/bbLeanSkin/exclusions.rc create mode 100644 plugins/bbSlit/bbSlit.rc create mode 100644 shellfolders.rc create mode 100644 stickywindows.ini diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ad40645 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +/backgrounds/3colours +/docs +/fonts +/styles/3colours + +/bsetshell.exe +/bbnote.exe +/bbstylemaker.exe +/blackbox.exe +/bsetbg.exe +/bsetroot.exe +/plugins/bbAnalog/readme.txt +/plugins/bbAnalog/bbAnalog.dll +/plugins/bbColor3dc +/plugins/bbIconBox/readme.txt +/plugins/bbIconBox/bbIconBox.dll +/plugins/bbKeys/readme.txt +/plugins/bbKeys/bbKeys.dll +/plugins/bbLeanBar/readme.txt +/plugins/bbLeanBar/bbLeanBar.dll +/plugins/bbLeanSkin/readme.txt +/plugins/bbLeanSkin/buttons +/plugins/bbLeanSkin/bbLeanSkin.dll +/plugins/bbLeanSkin/bbLeanSkinEng.dll +/plugins/bbSlit/readme.txt +/plugins/bbSlit/bbSlit.dll +/plugins/bbWorkspaceWheel \ No newline at end of file diff --git a/bbstylemaker.rc b/bbstylemaker.rc new file mode 100644 index 0000000..e2627bc --- /dev/null +++ b/bbstylemaker.rc @@ -0,0 +1,107 @@ +# ---------------------------------------------------------------- +# bbStyleMaker.rc - configuration file for bbStyleMaker 1.3 +# +# Put this file in the same directory as bbStyleMaker.exe +# + +# ---------------------------------------------------------------- +# styleinfo defaults: + +# author +bbstylemaker.style.author: + +# date format - see the bblean docs for date formats +bbstylemaker.date.format: %d %b %Y + +# date language locale - empty or C or it, fr, sp, us, uk, ru ... +bbstylemaker.date.locale: C + +# ---------------------------------------------------------------- +# stylefile output modes: + +# style syntax to use: '065' or '070' or 'style' +bbstylemaker.syntax: 070 + +# how to write the colors: 'html' or 'rgb' +bbstylemaker.colorMode: html + +# how to output the font spec's: +# 1 = separate values "font:", "fontHeight:", "fontWeight:" (default) +# 2 = xoblite format "snap/12/normal" +# 3 = linux-like simple format "lucida-12-bold" +# 4 = linux-like xfd format "-*-facename-weight-r-*-*-height-*-*-*-*-*-*-*" +# Note: 3 and 4 will not work with dashes in the font name, e.g. 'mints-mild'. +bbstylemaker.fontMode: 1 + +# align right side on column: true or false +bbstylemaker.tabify: false + +# EOL mode: 'dos' or 'unix' +bbstylemaker.eolMode: dos + +# ---------------------------------------------------------------- +# bbstylemaker appearance + +# window size +bbstylemaker.widthPercent: 92 +bbstylemaker.heightPercent: 92 + +# window position (auto saved) +bbstylemaker.xpos: -1 +bbstylemaker.ypos: -1 + +# true for default windows caption bar: +bbstylemaker.captionbar: false + +# guistyle for bbstylemaker (default: this file, see below) +bbstylemaker.guistyle: + +# style editor (default: the 'blackbox editor' from extensions.rc) +! bbstylemaker.editor: bbnote.exe + +# ---------------------------------------------------------------- +# style for bbstylemaker itself - subset of a blackbox style + +# font to use +*font: verdana +*fontHeight: 12 +*fontWeight: normal +*title.fontWeight: bold + +# main and group titles +menu.title.appearance: parentrelative border +menu.title.textColor: #000000 +menu.title.borderColor: #222 +menu.title.borderWidth: 2 +menu.title.marginWidth: 2 +menu.title.alignment: left + +# option groups +menu.frame.appearance: solid border +menu.frame.backgroundColor: #bbb +menu.frame.foregroundColor: #000 +menu.frame.textColor: #000 +menu.frame.disabledColor: #999 +menu.frame.borderColor: #777 +menu.frame.borderWidth: 0 + +# checked options +menu.active.appearance: sunken solid +menu.active.backgroundColor: #ddd +menu.active.foregroundColor: #000 +menu.active.textColor: #000 +menu.active.borderColor: #888 + +# buttons and slider knobs +toolbar.button.appearance: solid border +toolbar.button.backgroundColor: #000 +toolbar.button.foregroundColor: #ccc +toolbar.button.borderColor: #ccc +toolbar.button.borderWidth: 1 + +# pressed buttons +toolbar.button.pressed.appearance: sunken solid +toolbar.button.pressed.backgroundColor: #aaa +toolbar.button.pressed.foregroundColor: #444 + +# ---------------------------------------------------------------- diff --git a/blackbox.rc b/blackbox.rc new file mode 100644 index 0000000..495ba75 --- /dev/null +++ b/blackbox.rc @@ -0,0 +1,54 @@ +# ------------------------------------------ +# bblean 1.17 - blackbox.rc - basic settings + +# Lines starting with # or ! are ignored +# All items are configurable from the menu + +# - the toolbar - +session.screen0.toolbar.enabled: false +session.screen0.toolbar.placement: BottomCenter +session.screen0.toolbar.widthPercent: 66 +session.screen0.toolbar.onTop: true +session.screen0.toolbar.autoHide: false +session.screen0.toolbar.pluginToggle: true +session.screen0.toolbar.alpha.enabled: false +session.screen0.toolbar.alpha.value: 224 + +# - the menu - +session.menu.position.x: 280 +session.menu.position.y: 148 +session.menu.maxWidth: 300 +session.menu.popupDelay: 100 +session.menu.mouseWheelFactor: 3 +session.menu.alpha.enabled: false +session.menu.alpha.value: 216 +session.menu.onTop: false +session.menu.sticky: true +session.menu.snapWindow: true +session.menu.pluginToggle: true +session.menu.openDirection: bullet +session.menu.sortbyExtension: true +session.menu.drawSeparators: true +session.menu.dropShadows: false + +# - the slit - +session.screen0.slit.placement: TopRight +session.screen0.slit.direction: Horizontal +session.screen0.slit.autoHide: false +session.screen0.slit.ontop: true +session.screen0.slit.toggle: false + +# - other options - +session.screen0.workspaces: 3 +session.screen0.workspacenames: alpha,beta,gamma,delta +session.screen0.focusModel: ClickToFocus +session.screen0.fullMaximization: false +session.screen0.strftimeformat: %H:%M %a %d %b + +session.autoraisedelay: 250 +session.opaqueMove: true +session.imageDither: true + +# - menu & style - +session.menufile: menu.rc +session.styleFile: styles\3colours\red diff --git a/bsetroot.rc b/bsetroot.rc new file mode 100644 index 0000000..fcfddb2 --- /dev/null +++ b/bsetroot.rc @@ -0,0 +1,12 @@ +# -------------------------------------------------------------- +# bsetroot.rc - options and image searchpath for bsetroot 2.1 + +# Options are read just like commandline switches. +# Lines starting with # or ! are ignored. +# Paths containing spaces need to have quotes. + +# Example: (uncomment to use) +! -path c:\some\path\to\images +! -path c:\another\path\to\images + +-quiet diff --git a/extensions.rc b/extensions.rc new file mode 100644 index 0000000..611d948 --- /dev/null +++ b/extensions.rc @@ -0,0 +1,151 @@ +# ----------------------------------------------------- +# bblean 1.17 - extensions.rc + +# Lines starting with # or ! are ignored + +# ----------------------------------------------------- +# Favorite Tool + +# The default editor for menu, styles and settings +blackbox.editor: bbnote.exe + + +# ----------------------------------------------------- +# Appearance + +# Bullet size: true=4px, false=6px +blackbox.appearance.bullet.unix: false + +# arrow bullets: +blackbox.appearance.arrow.unix: false + +# Menu drag cursor +blackbox.appearance.cursor.usedefault: false + +# Alternative menu bullets (a template is in 'docs') +! blackbox.appearance.bullet.bitmap: menu-bullets.bmp + + +# ----------------------------------------------------- +# Background Wallpaper options + +# Execute any style-rootCommands at all? +blackbox.background.enabled: true + +# Load the background into bbLean's own desktopwindow? +blackbox.background.smartWallpaper: true + +# Drag'n-dropped background images are saved here +blackbox.background.rootCommand: style + + +# ----------------------------------------------------- +# Workspace options + +# Alternate workspace method (windows are hidden rather than moved away). +# (This is compatible only with latest bbpager 1.13b5) +blackbox.workspaces.altMethod: true + +# Try this if maximized windows refuse to switch workspaces +# with StyleXP or Vista Design. (This is not compatible with +# bbpager currently) +blackbox.workspaces.styleXPFix: false + +# Automatically switch workspace to active task +blackbox.workspaces.followActive: true + + +# ----------------------------------------------------- +# Desktop settings + +# Desktop margins for special desktop setups. -1 means +# automatic margins (with tool-/systembar) +blackbox.desktop.marginTop: -1 +blackbox.desktop.marginBottom: -1 +blackbox.desktop.marginLeft: -1 +blackbox.desktop.marginRight: -1 + +# 2nd, ... monitor +! blackbox.desktop.2.marginTop: ... +!... + +# Edge and Plugin Snap +blackbox.snap.threshold: 7 +blackbox.snap.padding: 4 +blackbox.snap.toPlugins: true + + +# ----------------------------------------------------- +# Desktop Mouse Clicks + +# General: blackbox.desktop.[]