This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
F13:: | |
ActivateProcess("slack.exe") | |
return | |
F14:: | |
ActivateProcess("telegram.exe") | |
return | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import board | |
#from kmk.kmk_keyboard import KMKKeyboard | |
#from kmk.matrix import DiodeOrientation | |
#from kmk.keys import KC | |
# Updated to be compatible with the latest KMK release (which requires CircuitPython >= 7.0) | |
from kmk.kmk_keyboard import KMKKeyboard | |
from kmk.keys import KC | |
from kmk.scanners import DiodeOrientation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM wazum/openconnect-proxy as base | |
COPY entrypoint.sh /entrypoint.sh | |
RUN chmod +x /entrypoint.sh | |
ENTRYPOINT ["/entrypoint.sh"] |
OlderNewer