diff options
| author | Omar Rizwan <omar@omar.website> | 2023-09-06 03:17:05 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-06 03:17:05 +0000 |
| commit | 6730ac33d1832dc9bcbbd7b5307cad1b833a04cc (patch) | |
| tree | 9b61cedbf6bf8e32070d71b77bf4280b5f2f441b /virtual-programs | |
| parent | Start fixing dot trie (diff) | |
| parent | Proper escaping of keyboard keys; change esc-restart modifiers (diff) | |
| download | folk-6730ac33d1832dc9bcbbd7b5307cad1b833a04cc.tar.gz folk-6730ac33d1832dc9bcbbd7b5307cad1b833a04cc.zip | |
Merge pull request #77 from FolkComputer/zspotter/key-escaping
Proper escaping of keyboard keys; change esc-restart modifiers
Diffstat (limited to 'virtual-programs')
| -rw-r--r-- | virtual-programs/esc-restart.folk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/virtual-programs/esc-restart.folk b/virtual-programs/esc-restart.folk index 02d66f63..ee8aa847 100644 --- a/virtual-programs/esc-restart.folk +++ b/virtual-programs/esc-restart.folk @@ -1,3 +1,3 @@ -When keyboard claims key /key/ is /t/ with modifiers /m/ { - if {[string tolower $key] == "esc"} {exec sudo systemctl restart folk} -}
\ No newline at end of file +When keyboard claims key ESC is down with modifiers alt { + exec sudo systemctl restart folk +} |
