Advertisement
Guest User

bbleanbar mouse clicks

a guest
Aug 13th, 2014
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.48 KB | None | 0 0
  1. Tasks
  2. Mouse event Effect
  3. LeftClick activate|raise deactivate|minimise window (hard-coded)
  4. RightClick show Bro@ms Menu
  5. ShiftLeftClick bring the window to the current workspace (hard-coded)
  6. ShiftRightClick close window
  7. CtrlLeftClick shade|rollup window
  8. CtrlRightClick show Configuration Menu
  9. MidClick move window to next workspace right
  10. ShiftMidClick move window to next workspace left
  11. LeftLeftClick full maximisation
  12. RightLeftClick maximise horizontally only
  13. MidLeftClick maximise vertically only
  14. CtrlMidClick minimize to tray (bbLeanMod & bb4win_mod only)
  15.  
  16. WorkspaceLabel
  17. Mouse event Effect
  18. LeftClick change to next workspace right
  19. RightClick change to next workspace left
  20. MidClick show workspaces|processes menu (processes menu is bb4win_mod only)
  21. CtrlRightClick show Configuration Menu
  22.  
  23. Clock
  24. Mouse event Effect
  25. LeftClick show Windows Control Panel Time applet
  26. CtrlRightClick show Configuration Menu
  27.  
  28. WindowLabel
  29. Mouse event Effect
  30. LeftClick show the main Blackbox Menu
  31. RightClick show the Bro@ms Menu
  32. CtrlRightClick show Configuration Menu
  33.  
  34. TaskStyleButton
  35. Mouse event Effect
  36. LeftClick cycle Task Style: Text & Icons, Icons only, Text only
  37. RightClick toggle taskbar display between current workspace & all workspaces
  38. CtrlRightClick show Configuration Menu
  39.  
  40. CurrentOnlyButton
  41. Mouse event Effect
  42. LeftClick toggle taskbar display between current workspace & all workspaces
  43. RightClick cycle Task Style: Text & Icons, Icons only, Text only
  44. CtrlRightClick show Configuration Menu
  45.  
  46. WorkspaceButtonL
  47. Mouse event Effect
  48. LeftClick change to next workspace left
  49. RightClick change to next workspace right
  50. CtrlRightClick show Configuration Menu
  51.  
  52. WorkspaceButtonR
  53. Mouse event Effect
  54. LeftClick change to next workspace right
  55. RightClick change to next workspace left
  56. CtrlRightClick show Configuration Menu
  57.  
  58. WindowButtonL
  59. Mouse event Effect
  60. LeftClick change to next window left on the taskbar
  61. RightClick change to next window right on the taskbar
  62. CtrlRightClick show Configuration Menu
  63. WindowButtonR
  64. Mouse event Effect
  65. LeftClick change to next window right on the taskbar
  66. RightClick change to next window left on the taskbar
  67. CtrlRightClick show Configuration Menu
  68.  
  69. Available Mouse-Click Commands
  70. To be entered in bbLeanBar.rc such as: bbLeanBar.clock.ShiftMidClick: media.rc
  71. Command Comments Bro@m (or other command)
  72. Lower sends window to back @BBCore.Lower
  73. ShadeWindow shades|rolls up window @BBCore.ShadeWindow
  74. Close closes window @BBCore.Close
  75. Maximize full maximisation @BBCore.Maximize
  76. MaximizeVertical maximises up only @BBCore.MaximizeVertical
  77. MaximizeHorizontal maximises across only @BBCore.MaximizeHorizontal
  78. MinimizeToTray bbLeanMod & only @BBCore.MinimizeToTray
  79. AlwaysOnTop keeps window on top @BBCore.AlwaysOnTop
  80. StickWindow shows window on all workspaces @BBCore.StickWindow
  81. LeftWorkspace move to next workspace left @BBCore.LeftWorkspace
  82. MoveWindowLeft move window one workspace left @BBCore.MoveWindowLeft
  83. RightWorkspace move to next workspace right @BBCore.RightWorkspace
  84. MoveWindowRight move window one workspace right @BBCore.MoveWindowRight
  85. MinimizeAll minimises all windows on current workspace @BBCore.MinimizeAll
  86. RestoreAll restores all windows on current workspace @BBCore.RestoreAll
  87. Cascade cascades tiles all windows on current workspace horizontally @BBCore.TileHorizontal
  88. TileVertical tiles all windows on current workspace vertically @BBCore.TileVertical
  89. TaskStyle cycle between Text & Icons, Icons only, Text only @BBLeanBar.TaskStyle
  90. CurrentOnly toggle taskbar between current & all windows @BBLeanBar.CurrentOnly
  91. Bro@msMenu show t he Bro@ms menu @BBLeanBar.Bro@msMenu
  92. Menu show the bbLeanBar config menu @BBLeanBar.Menu
  93. time show the Windows Time applet control.exe timedate.cpl
  94. configuration show the Blackbox config menu @BBCore.ShowMenu configuration
  95. processes show the running processes menu (bbLeanMod & bb4win_mod only) @BBCore.ShowMenu processes
  96. icons show a menu of all minimised windows @BBCore.ShowMenu icons
  97. workspaces show the Blackbox workspaces menu @BBCore.ShowMenu workspaces
  98. kill show a menu to close processes (bb4win_mod only) @BBCore.ShowMenu kill
  99. [name ofcustom menufile.rc] must be in the same folder as menu.rc @BBCore.ShowMenu (full file path)
  100. *All items in bold italic are available from the Bro@ms Menu (default right-click on Tasks, Tray, Clock & WindowLabel).
  101. Other Bro@ms: see Broadcast Messages here or in Desktop->RightClick->Blackbox->Documentation for examples.
  102. Files or applications: full path to application or other file.
  103.  
  104. Clock Formatting
  105. Special codes are used for formatting both the clock display and the clock tooltip either through the Configuration Menu (CtrlRightClick->Format) or in bbLeanBar.rc:
  106. bbLeanBar.strftimeFormat: %H:%M:%S | %a | %d %b (default: %a %d %H:%M)
  107. bbLeanBar.strftimeTipsFormat: %A %d %B %Y (default value)
  108. Basic
  109. %a = Abbreviated weekday name,
  110. %A = Full weekday name
  111. %b = Abbreviated month name,
  112. %B = Full month name
  113. %c = Date and time representation appropriate for locale
  114. %d = Day of month - numerical (01 – 31)
  115. %H = Hour in 24-hour format (00 – 23)
  116. %I = Hour in 12-hour format (01 – 12)
  117. %j = Day of year - numerical (001 – 366)
  118. %m = Month - numerical (01 – 12)
  119. %M = Minute - numerical (00 – 59)
  120. %p = Current locale's A.M./P.M. indicator for 12-hour clock
  121. %U = Week of year - numerical - with Sunday as first day of week (00 – 53)
  122. %w = Weekday - numerical (0 – 6; Sunday is 0)
  123. %W = Week of year - numerical - with Monday as first day of week (00 – 53)
  124. %x = Date representation for current locale
  125. %X = Time representation for current locale
  126. %y = Year without century (00 – 99)
  127. %Y = Year with century
  128. %z, %Z = Time-zone name|abbreviation; no characters if time zone is unknown
  129. %#d, %#H, %#I, %#j, %#m, %#M, %#S, %#U, %#w, %#W, %#y, %#Y -> Remove leading zeros (if any)
  130. Characters that do not "begin" with % (other than %%) are copied unchanged to the output buffer.
  131.  
  132. Supplementary
  133. Adding a # flag alters some of the above - as follows:
  134. %#c = Long date and time representation - appropriate for current locale
  135. %#x = Long date representation - appropriate to current locale
  136. %#d,H,I,j,m,M,S,U,w,W,y,Y = Remove leading zeros (if any)
  137. The # flag is ignored for: %#a,A,b,B,p,X,z,Z,%
  138. Note: Check or unset the TZ environment variable on your computer to correct timezone issues.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement