Compare commits

...

5 Commits
v2.6 ... master

Author SHA1 Message Date
46aa095d1d README.md (Update links) 2022-10-14 23:25:57 +02:00
q3aql
ebd7bdfb79 Bump up version to 2.7 2021-05-04 12:36:09 +02:00
q3aql
4bd8795ea8 Update README.md (v2.7) 2021-05-04 12:34:34 +02:00
q3aql
948c3a4a69 Map Win + Esc to show blacklash 2021-05-04 12:31:48 +02:00
q3aql
531d46007d Map Alt + ' to show blacklash 2021-05-04 12:24:04 +02:00
4 changed files with 30 additions and 7 deletions

View File

@ -11,11 +11,11 @@ For Windows, you just have to follow the following steps for installation and us
* **Installation and Use:**
* Download the package [ansi-gli-2.6.zip](https://github.com/q3aql/ansi-gli/releases/download/v2.6/ansi-gli-2.6.zip).
* Download the package [ansi-gli-2.7.zip](https://drive.proton.me/urls/A0BF0XCXHR#5zvMXkiswOZf).
* Unzip the package.
* Run `ansi-gli_x86.exe` (for Windows 32-bits) or `ansi-gli_x86_64.exe` (for Windows 64-bits).
* **Optional**: If you want CapsLock disabled, run `ansi-gli-nocapslock_x86.exe` or `ansi-gli-nocapslock_x86_64.exe`.
* You will see the app icon on the tray. ([Image](https://github.com/q3aql/ansi-gli/blob/master/images/ansi-gli-tray.png))
* You will see the app icon on the tray. ([Image](images/ansi-gli-tray.png))
* You can now use the key combinations.
List of combinations:
@ -30,6 +30,8 @@ List of combinations:
- Alt + + = ¿
- Alt + c = ?
- Alt + v = ¿
- Alt + ' = \
- Win + Esc = \
- Win + Alt = AltGr (for keyboards without AltGr key as SK71/SK64)
- CapsLock = Shift (with nocapslock version)
@ -58,7 +60,7 @@ If you want to add more combinations or the ones mentioned do not work for you,
* Install `autokey` for Linux ([from here](https://github.com/autokey/autokey/releases)).
* Install `Python3` (Installed by default on many Linux distributions).
* Install the command `make` (`sudo apt-get install make` on Ubuntu/Debian).
* Download the package [ansi-gli-2.6.zip](https://github.com/q3aql/ansi-gli/releases/download/v2.6/ansi-gli-2.6.zip).
* Download the package [ansi-gli-2.7.zip](https://drive.proton.me/urls/A0BF0XCXHR#5zvMXkiswOZf).
* Unzip the package.
* Inside the `linux` folder, open a terminal and type the command: `make install`.
* Run `autokey` (It is recommended to configure it to start on login).
@ -86,7 +88,7 @@ I don't know and I don't care.
* First, install [AutoHoyKey](https://www.autohotkey.com/).
* Then, download the source from here.
* In the directory `src`, you have `ansi-gli.ahk`. Right click.
* Choose `Compile Script`. ([Image](https://github.com/q3aql/ansi-gli/blob/master/images/ansi-gli-compile.png))
* Choose `Compile Script`. ([Image](images/ansi-gli-compile.png))
### External links:

View File

@ -6,7 +6,7 @@
# Contact: q3aql@protonmail.ch #
# License: GPL v2.0 #
################################################
Version v2.6
Version v2.7
* Installation steps:

View File

@ -6,7 +6,7 @@
; # Contact: q3aql@protonmail.ch #
; # License: GPL v2.0 #
; ################################################
; Version v2.6
; Version v2.7
;
; You've probably noticed that when you switch from an ISO keyboard
; to an ANSI keyboard, the "<" and ">" keys are missing. When you
@ -115,8 +115,19 @@ return
Send, ¿
return
;
; Map Alt + ' to show blacklash
!'::
Send, \
return
;
; Map Win + Esc to show blacklash
LWin & Escape::
Send, \
return
;
; Disable CapsLock (map CapsLock to Shift)
SetCapsLockState, AlwaysOff
CapsLock::LShift
return
;

View File

@ -6,7 +6,7 @@
; # Contact: q3aql@protonmail.ch #
; # License: GPL v2.0 #
; ################################################
; Version v2.6
; Version v2.7
;
; You've probably noticed that when you switch from an ISO keyboard
; to an ANSI keyboard, the "<" and ">" keys are missing. When you
@ -115,3 +115,13 @@ return
Send, ¿
return
;
; Map Alt + ' to show blacklash
!'::
Send, \
return
;
; Map Win + Esc to show blacklash
LWin & Escape::
Send, \
return
;