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
| {"lastUpload":"2020-11-24T02:26:27.428Z","extensionVersion":"v3.4.3"} |
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
| // enter the following into the js console of your browser | |
| document.cookie = "tweetdeck_version=beta" |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| shopt -s inherit_errexit | |
| # Make sure HandBrakeCLI is in the path -- I've got it installed in ~/bin for now | |
| # since it disappeared from Homebrew | |
| PATH=$HOME/bin:$PATH | |
| MOVIES=$HOME/Movies | |
| NAS_DIR=/Volumes/Media/Movies |
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
| #!/usr/bin/env sh | |
| # from https://superuser.com/a/1041818 | |
| ffmpeg -loop 1 -i img.jpg -i music.mp3 -shortest -acodec copy -vcodec mjpeg result.mkv |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| local wezterm = require("wezterm") | |
| local config = {} | |
| config.automatically_reload_config = true | |
| config.enable_tab_bar = false | |
| config.window_close_confirmation = "NeverPrompt" | |
| config.window_decorations = "RESIZE" | |
| -- config.default_cursor_style = "BlinkingBar" | |
| config.color_scheme = "Nord (Gogh)" | |
| -- config.font = wezterm.font("FiraCode Nerd Font Mono") |
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 launchAppOnHotkey(modifiers, key, appName) | |
| hs.hotkey.bind(modifiers, key, function() | |
| local app = hs.application.find(appName) | |
| if app == nil then | |
| hs.application.launchOrFocus(appName) | |
| elseif app:isFrontmost() then | |
| app:hide() | |
| else | |
| local win = app:mainWindow() | |
| spaces.moveWindowToSpace(win:id(), spaces.activeSpaceOnScreen()) |
OlderNewer