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
| # BetterTouchTool reset trial time | |
| # ** All preference will reset | |
| echo "remove ~/Library/Preferences/com.hegenberg.BetterTouchTool.plist" | |
| rm -rf ~/Library/Preferences/com.hegenberg.BetterTouchTool.plist | |
| echo "Done" | |
| echo "remove ~/Library/Application\ Support/BetterTouchTool/" | |
| rm -rf ~/Library/Application\ Support/BetterTouchTool/ | |
| echo "Done" |
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 url(integrated_searchbar_popup.css); | |
| @import url(compact-bookmarks.css); | |
| @import url(sliding-bookmarks-bar.css); | |
| /*================ GLOBAL COLORS ================*/ | |
| :root { | |
| --accent-color: 60, 56, 54; | |
| --tab-color: 240, 240, 244; | |
| --tab-text: 0, 0, 0; |
Development builds for each commit are available at "Artifacts" of the CI/CD action: https://github.com/piroor/copy-selected-tabs-to-clipboard/actions?query=workflow%3ACI%2FCD
|type|format string|
No copying URL! No pressing paste or enter!!
You select your text, and activate this script by a hotkey shortcut (e.g F9) and you instantly download the video!
No pressing enter or confirmation or whatever bs. Literally 1 button download, couldn't be smoother. No "copy" -> "select input field" -> "paste" -> "enter" on whatever video downloader
#!/bin/sh
# Replace /username/ with your username under home directory
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
| # youtube-dlp-bash | |
| **No copying URL! No pressing paste or enter!!** | |
| You select your text, and activate this script by a hotkey shortcut (e.g F9) and **you instantly download the video!** | |
| No pressing enter or confirmation or whatever bs. Literally 1 button download, couldn't be smoother. No "copy" -> "select input field" -> "paste" -> "enter" on whatever video downloader | |
| ``` | |
| #!/bin/sh | |
| # Replace /username/ with your username under home directory |
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 | |
| dir="$HOME/Videos" | |
| opts="--add-metadata --no-mtime" | |
| if [ -f /usr/local/bin/youtube-dl ]; then | |
| youtube_dl="/usr/local/bin/youtube-dl" | |
| else | |
| youtube_dl="$(which youtube-dl)" | |
| fi |
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 Copy Shopify | |
| // @version 0.1 | |
| // @description Add copy button to shopify admin-api graphql schemas | |
| // @author tkain | |
| // @match https://shopify.dev/docs/admin-api/graphql/reference/* | |
| // @grant GM_setClipboard | |
| // ==/UserScript== | |
| const parseAndCopy = (table) => { |
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 | |
| CYAN="$(tput bold; tput setaf 6)" | |
| RESET="$(tput sgr0)" | |
| clear | |
| if command -v python3 > /dev/null 2>&1; then | |
| if [ $(python3 -c "print('ye')") = "ye" ]; then | |
| clear |