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.
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.
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:
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"
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.

