Mouse Gestures & Hotkeys

Sponsored Links

Examples of mouse gestures and hotkeys

You can use third-party applications to control a running Clibor instance with mouse gestures, hotkeys, and startup parameters.

Startup parameters let you control Clibor when you launch it. See Startup Parameters for the full list.

Example: Show the main screen of Clibor

"C:\Clibor\Clibor.exe" /cm

Adjust the path to match your install location.

Mouse gestures with CLaunch

The example below uses CLaunch to control Clibor with mouse gestures.
Similar setups work with other applications as well.

Just a moment...

First, install and launch CLaunch and Clibor.
Add Clibor.exe by dragging and dropping it into CLaunch.

Next, open the Properties and enter /cm in the startup parameter field.

This startup parameter tells Clibor to show its main screen when triggered.

Then, click on Mouse direct to configure mouse gestures.
You can assign a custom mouse gesture to open Clibor.

Once configured, you can open Clibor using mouse gestures.

Hotkeys with CLaunch

Open the CLaunch properties and assign a hotkey.

Once set, you can show Clibor's main screen using the assigned hotkey.

Hotkeys with AutoHotkey

You can use AutoHotkey to control Clibor with custom hotkeys.
Download and install AutoHotkey from the link below:

AutoHotkey
Free keyboard macro program. Supports hotkeys for keyboard, mouse, and joystick. Can expand abbreviations as you type th...

Create a file named clibor.ahk (any file name is fine).
Press Ctrl + 1 to show the first Template group.

^1::Run "C:\Clibor\Clibor.exe /vt 1"
^2::Run "C:\Clibor\Clibor.exe /vt 2"
^3::Run "C:\Clibor\Clibor.exe /vt 3"
^4::Run "C:\Clibor\Clibor.exe /vt 4"

^1 means Ctrl + 1 in AutoHotkey syntax. Press Ctrl + 2 to show the second Template group.

To copy the first Template on group 1 to the clipboard, use /vt 1 1:

^1::Run "C:\Clibor\Clibor.exe /vt 1 1"
^2::Run "C:\Clibor\Clibor.exe /vt 2 1"

If auto-paste is enabled, the Template is pasted automatically.

Using a batch file

You can control Clibor using a batch file.

Create a file named test.bat and add the following command:

C:\Clibor\Clibor.exe /vt 1

Save the file and double-click test.bat to run it.

Copied title and URL