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
| #!/bin/bash | |
| # ============================================================================= | |
| # fix-home-end-keys.sh | |
| # | |
| # Fixes Home/End key behaviour on macOS so they jump to the start/end of the | |
| # current line, rather than the top/bottom of the document (page up/down). | |
| # | |
| # macOS supports a system-wide key binding file that most native (Cocoa) apps | |
| # respect. This script safely adds the required bindings to that file without |
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
| #!/bin/bash | |
| # ============================================================================= | |
| # fix-home-end-keys.sh | |
| # | |
| # Fixes Home/End key behaviour on macOS so they jump to the start/end of the | |
| # current line, rather than the top/bottom of the document (page up/down). | |
| # | |
| # macOS supports a system-wide key binding file that most native (Cocoa) apps | |
| # respect. This script safely adds the required bindings to that file without |
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
| // ==UserScript== | |
| // @name Google Meet Auto-Join & Auto-Close | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.2 | |
| // @description Auto-clicks the join button on Google Meet, and closes the tab 5 seconds after leaving a meeting. | |
| // @author You | |
| // @match https://meet.google.com/* | |
| // @grant none | |
| // @run-at document-idle | |
| // ==/UserScript== |
OlderNewer