2014-03-08 22:32:32 +00:00
|
|
|
## Default hotkeys
|
2014-03-07 00:16:32 +00:00
|
|
|
|
|
|
|
### General description
|
|
|
|
|
|
|
|
The hotkeys, as you can set them in `Config.ini`, are noted in the format
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=<modifier><key>::<function>(<argument>)`; you may copy the
|
2015-03-15 16:56:14 +00:00
|
|
|
string from ` ` and use it as a template for a new line in `Config.ini`.
|
2014-03-07 00:16:32 +00:00
|
|
|
Possible modifiers are the following:
|
|
|
|
|
2015-03-15 16:56:14 +00:00
|
|
|
* `!` <kbd>Alt</kbd>
|
|
|
|
* `^` <kbd>Ctrl</kbd>, Control
|
|
|
|
* `#` <kbd>Win</kbd> / LWin, the left Windows key
|
|
|
|
* `+` <kbd>Shift</kbd>
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2014-03-24 19:02:31 +00:00
|
|
|
You will have to press all keys of a hotkey at the same time beginning with the
|
|
|
|
modifier for calling the associated function, e. g. `#^q` means pressing the
|
2015-03-15 15:32:09 +00:00
|
|
|
left 'Windows key' and the 'Control key' and the 'Q key'
|
|
|
|
(<kbd>Win</kbd><kbd>Ctrl</kbd><kbd>Q</kbd>) for quitting bug.n.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
|
|
|
### Window management
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#Down::View_activateWindow(0, +1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Activate the next window in the active view.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#Up::View_activateWindow(0, -1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Activate the previous window in the active view.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+Down::View_shuffleWindow(0, +1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Move the active window to the next position in the window list of the view.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+Up::View_shuffleWindow(0, -1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Move the active window to the previous position in the window list of the view.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+Enter::View_shuffleWindow(1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Move the active window to the first position in the window list of the view.
|
2015-01-27 23:02:37 +00:00
|
|
|
You may also move the active window to any other absolute position in the
|
|
|
|
window list by using the first parameter.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#c::Manager_closeWindow()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Close the active window.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+d::Window_toggleDecor()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Show / Hide the title bar of the active window.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+f::View_toggleFloatingWindow()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Toggle the floating status of the active window (i. e. dis- / regard it when
|
|
|
|
tiling).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^m::Manager_minimizeWindow()`
|
2015-03-07 21:49:17 +00:00
|
|
|
> Minimize the active window; this implicitly makes the window floating.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+m::Manager_moveWindow()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Move the active window by key (only floating windows).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+s::Manager_sizeWindow()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Resize the active window by key (only floating windows).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+x::Manager_maximizeWindow()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Move and resize the active window to the size of the work area (only floating
|
|
|
|
windows).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#i::Manager_getWindowInfo()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Get information for the active window (id, title, class, process name, style,
|
|
|
|
geometry, tags and floating state).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+i::Manager_getWindowList()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Get a window list for the active view (id, title and class).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=!Down::View_moveWindow(0, +1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Manually move the active window to the next area in the layout.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=!Up::View_moveWindow(0, -1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Manually move the active window to the previous area in the layout.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=!+Enter::Manager_maximizeWindow()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Move and resize the active window to the size of the work area (only floating
|
|
|
|
windows).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=!<n>::View_moveWindow(<n>)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Manually move the active window to the n<sup><small>th</small></sup> area in
|
|
|
|
the layout (n = 1..9).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=!0::View_moveWindow(10)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Manually move the active window to the n<sup><small>th</small></sup> area in
|
|
|
|
the layout.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=!BackSpace::View_toggleStackArea()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Toggle the stack area of the layout. If the stack area is disabled, the
|
|
|
|
master area takes up the whole view.
|
|
|
|
|
|
|
|
### Window debugging
|
2014-03-08 22:32:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^i::Debug_logViewWindowList()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Dump window information on the windows of the active view to the log.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+^i::Debug_logManagedWindowList()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Dump window information on the contents of the managed window list (floating
|
|
|
|
and tiled windows of all views) to the log.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^h::Debug_logHelp()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Print a description of the formatting (column headings) used in the previous
|
2014-03-07 00:30:21 +00:00
|
|
|
two log messages (`Manager_logViewWindowList` and
|
|
|
|
`Manager_logManagedWindowList`) to the log.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^d::Debug_setLogLevel(0, -1)`
|
2015-01-27 21:33:13 +00:00
|
|
|
> Decrement the debug log level. Show fewer debug messages. You may also set
|
|
|
|
the debug log level to an absolute value by using the first parameter.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^+d::Debug_setLogLevel(0, +1)`
|
2015-01-27 21:33:13 +00:00
|
|
|
> Increment the debug log level. Show more debug messages. You may also set
|
|
|
|
the debug log level to an absolute value by using the first parameter.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
|
|
|
### Layout management
|
2014-03-08 22:32:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#Tab::View_setLayout(-1)`
|
2015-01-27 21:13:03 +00:00
|
|
|
> Set the previously set layout. You may also use `View_setLayout(0, +1)` for
|
|
|
|
setting the next or `View_setLayout(0, -1)` for setting the previous layout in
|
|
|
|
the layout array.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#f::View_setLayout(3)`
|
2014-03-07 00:39:01 +00:00
|
|
|
> Set the 3<sup><small>rd</small></sup> defined layout (i. e. floating layout
|
|
|
|
in the default configuration).
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#m::View_setLayout(2)`
|
2014-03-07 00:39:01 +00:00
|
|
|
> Set the 2<sup><small>nd</small></sup> defined layout (i. e. monocle layout in
|
|
|
|
the default configuration).
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#t::View_setLayout(1)`
|
2014-03-07 00:39:01 +00:00
|
|
|
> Set the 1<sup><small>st</small></sup> defined layout (i. e. tile layout in
|
|
|
|
the default configuration).
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#Left::View_setLayoutProperty(MFactor, 0, -0.05)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Reduce the size of the master area in the active view (only for the "tile"
|
2015-01-27 20:59:12 +00:00
|
|
|
layout). You may also set an additional parameter for accelerating the third
|
2015-03-15 15:32:09 +00:00
|
|
|
one. E. g. with
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#Left::View_setLayoutProperty(MFactor, 0, -0.05, 2)` the first
|
2015-03-15 15:32:09 +00:00
|
|
|
step, by which the master area is reduced, is -0.0016% and will be doubled with
|
|
|
|
consecutive calls until it reaches -0.05%.
|
2015-01-27 20:59:12 +00:00
|
|
|
With the second parameter you may set an absolute value, e. g.
|
2015-03-15 16:56:14 +00:00
|
|
|
`View_setLayoutProperty(MFactor, 0.5, 0)` splits the view in half.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#Right::View_setLayoutProperty(MFactor, 0, +0.05)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Enlarge the size of the master area in the active view (only for the "tile"
|
2015-01-27 20:59:12 +00:00
|
|
|
layout). You may also set a additional parameter for accelerating the third
|
2015-03-15 15:32:09 +00:00
|
|
|
one. E. g. with
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#Right::View_setLayoutProperty(MFactor, 0, +0.05, 0.5)` the
|
2015-01-27 20:59:12 +00:00
|
|
|
first step, by which the master area is reduced, is 0.05%, but with consecutive
|
|
|
|
calls it will be halved until it reaches 0.0016%.
|
|
|
|
With the second parameter you may set an absolute value, e. g.
|
2015-03-15 16:56:14 +00:00
|
|
|
`View_setLayoutProperty(MFactor, 0.67, 0)` makes the master area two thirds
|
2015-01-27 20:59:12 +00:00
|
|
|
and the stacking area one third the size of the view.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^t::View_setLayoutProperty(Axis, 0, +1, 1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Rotate the layout axis (i. e. 2 -> 1 = vertical layout, 1 -> 2 = horizontal
|
|
|
|
layout, only for the "tile" layout).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^Enter::View_setLayoutProperty(Axis, 0, +2, 1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Mirror the layout axis (i. e. -1 -> 1 / 1 -> -1 = master on the left / right
|
|
|
|
side, -2 -> 2 / 2 -> -2 = master at top / bottom, only for the "tile" layout).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^Tab::View_setLayoutProperty(Axis, 0, +1, 2)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Rotate the master axis (i. e. 3 -> 1 = x-axis = horizontal stack, 1 -> 2 =
|
|
|
|
y-axis = vertical stack, 2 -> 3 = z-axis = monocle, only for the "tile" layout).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^+Tab::View_setLayoutProperty(Axis, 0, +1, 3)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Rotate the stack axis (i. e. 3 -> 1 = x-axis = horizontal stack, 1 -> 2 =
|
|
|
|
y-axis = vertical stack, 2 -> 3 = z-axis = monocle, only for the "tile" layout).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^Up::View_setLayoutProperty(MY, 0, +1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Increase the master Y dimension by 1, i.e. increase the number of windows in
|
|
|
|
the master area by X. Maximum of 9 (only for the "tile" layout).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^Down::View_setLayoutProperty(MY, 0, -1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Decrease the master Y dimension by 1, i.e. decrease the number of windows in
|
|
|
|
the master area by X. Minimum of 1 (only for the "tile" layout).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^Right::View_setLayoutProperty(MX, 0, +1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Increase the master X dimension by 1, i. e. increase the number of windows in
|
|
|
|
the master area by Y. Maximum of 9 (only for the "tile" layout).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^Left::View_setLayoutProperty(MX, 0, +1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Decrease the master X dimension by 1, i. e. decrease the number of windows in
|
|
|
|
the master area by Y. Minimum of 1 (only for the "tile" layout).
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+Left::View_setLayoutProperty(GapWidth, 0, -2)`
|
2015-01-28 21:20:15 +00:00
|
|
|
> Decrease the gap between windows in "monocle" and "tile" layout. You may also
|
|
|
|
set an absolute value for the gap width by using the first parameter, e. g.
|
|
|
|
`View_setLayoutProperty(GapWidth, 0, 0)` will eliminate the gap and
|
|
|
|
`View_setLayoutProperty(GapWidth, 20, 0)` will set it to 20px.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+Right::View_setLayoutProperty(GapWidth, 0, +2)`
|
2015-01-27 20:30:10 +00:00
|
|
|
> Increase the gap between windows in "monocle" and "tile" layout.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
|
|
|
### View / Tag management
|
2014-03-08 22:32:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+n::View_toggleMargins()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Toggle the view margins, which are set by the configuration variable
|
2014-03-07 00:21:59 +00:00
|
|
|
`Config_viewMargins`.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#BackSpace::Monitor_activateView(-1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Activate the previously activated view. You may also use
|
2015-01-28 16:42:18 +00:00
|
|
|
`Monitor_activateView(0, -1)` or `Monitor_activateView(0, +1)` for activating
|
|
|
|
the previous or next adjacent view.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+0::Monitor_setWindowTag(10)`
|
2014-03-07 00:34:54 +00:00
|
|
|
> Tag the active window with all tags (n = 1..`Config_viewCount`). You may also
|
2015-01-28 17:11:47 +00:00
|
|
|
use `Monitor_setWindowTag(0, -1)` or `Monitor_setWindowTag(0, +1)` for setting
|
|
|
|
the tag of the previous or next adjacent to the current view.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#<n>::Monitor_activateView(<n>)`
|
2014-03-07 00:34:54 +00:00
|
|
|
> Activate the n<sup><small>th</small></sup> view (n = 1..`Config_viewCount`).
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+<n>::Monitor_setWindowTag(<n>)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Tag the active window with the n<sup><small>th</small></sup> tag (n =
|
2014-03-07 00:34:54 +00:00
|
|
|
1..`Config_viewCount`).
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^<n>::Monitor_toggleWindowTag(<n>)`
|
2014-03-07 00:34:54 +00:00
|
|
|
> Add / Remove the n<sup><small>th</small></sup> tag (n = 1..`Config_viewCount`)
|
2014-03-07 00:16:32 +00:00
|
|
|
for the active window, if it is not / is already set.
|
|
|
|
|
|
|
|
### Monitor management
|
2014-03-08 22:32:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#.::Manager_activateMonitor(0, +1)`
|
2015-01-28 19:12:57 +00:00
|
|
|
> Activate the next monitor in a multi-monitor environment. You may also
|
|
|
|
activate a specific monitor by using the first parameter, e. g.
|
2015-01-28 19:26:43 +00:00
|
|
|
`Manager_activateMonitor(1)` will activate the first monitor.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#,::Manager_activateMonitor(0, -1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Activate the previous monitor in a multi-monitor environment.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+.::Manager_setWindowMonitor(0, +1)`
|
2015-01-28 19:26:43 +00:00
|
|
|
> Set the active window's view to the active view on the next monitor in a
|
|
|
|
multi-monitor environment. You may also set the active window on a specific
|
|
|
|
monitor by using the first parameter, e. g. `Manager_setWindowMonitor(1)` will
|
|
|
|
set the active window on the first monitor.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+,::Manager_setWindowMonitor(0, -1)`
|
2015-01-28 19:26:43 +00:00
|
|
|
> Set the active window's view to the active view on the previous monitor in a
|
2014-03-07 00:16:32 +00:00
|
|
|
multi-monitor environment.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^+.::Manager_setViewMonitor(0, +1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Set all windows of the active view on the active view of the next monitor in
|
2015-01-28 19:49:03 +00:00
|
|
|
a multi-monitor environment. You may also set all windows of the active view on
|
|
|
|
a specific monitor by using the first parameter, e. g.
|
|
|
|
`Manager_setViewMonitor(1)` will set all windows of the active view on the
|
|
|
|
first monitor.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^+,::Manager_setViewMonitor(0, -1)`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Set all windows of the active view on the active view of the previous monitor
|
|
|
|
in a multi-monitor environment.
|
|
|
|
|
|
|
|
### GUI management
|
2014-03-08 22:32:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+Space::Monitor_toggleBar()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Hide / Show the bar (bug.n status bar) on the active monitor.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#Space::Monitor_toggleTaskBar()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Hide / Show the task bar.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#y::Bar_toggleCommandGui()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Open the command GUI for executing programmes or bug.n functions.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#+y::Monitor_toggleNotifyIconOverflowWindow()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Toggle the overflow window of the 'notify icons'.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=!+y::View_traceAreas()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Indicate the areas of the "tile" layout.
|
|
|
|
|
|
|
|
### Administration
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^e::Run, edit <Config_filePath>`
|
2015-03-15 15:32:09 +00:00
|
|
|
> Open the configuration file in the standard text editor. If you want to set
|
|
|
|
this hotkey in `Config.ini`, you have to replace `<Config_filePath>` with an
|
|
|
|
explicit file path.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^s::Config_UI_saveSession()`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Save the current state of monitors, views, layouts to the configuration file.
|
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^r::Reload`
|
2015-03-07 13:10:00 +00:00
|
|
|
> Reload bug.n (i. e. the whole script), which resets i. a. the configuration
|
|
|
|
and internal variables of bug.n, including the window lists. It is like
|
|
|
|
Quitting and restarting bug.n.
|
|
|
|
If `Config_autoSaveSession` is not set to `off`, the window lists can be
|
|
|
|
restored and windows are put to their associated monitor and views.
|
2014-03-07 00:16:32 +00:00
|
|
|
|
2015-05-28 21:11:29 +00:00
|
|
|
`Config_hotkey=#^q::ExitApp`
|
2014-03-07 00:16:32 +00:00
|
|
|
> Quit bug.n, restore the default Windows UI and show all windows.
|