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
function vs_edit_issue() { | |
gh issue view $1 --json body --jq .body > /tmp/gh-$1.md | |
code --wait /tmp/gh-$1.md | |
gh issue edit $1 --body-file /tmp/gh-$1.md | |
} |
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
sudo cp libinput.so.10.14.0 /usr/lib/x86_64-linux-gnu/ | |
sudo ln -sf /usr/lib/x86_64-linux-gnu/libinput.so.10.14.0 /usr/lib/x86_64-linux-gnu/libinput.so.10 |
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
#SingleInstance force | |
drag_enabled := 0 | |
+^#F22:: |