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 | |
| # Tested with jq 1.6 & fzf 0.42.0 | |
| # Inspired by https://github.com/reegnz/jq-zsh-plugin | |
| # Call with `jazz <big_file_with_many_paths>.json` or `<command producing a valid json> | jazz` | |
| # End command with `... | pbcopy` or `... > output.json` to save selection | |
| input=$1 | |
| TMP_DIR=$(mktemp -d /tmp/jazz_XXX) | |
| chmod 700 "$TMP_DIR" |
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
| for OS in \ | |
| oraclelinux:{7..9} \ | |
| debian:{buster,bullseye,bookworm} \ | |
| registry.access.redhat.com/ubi{8,9}/ubi \ | |
| ubuntu:{bionic,focal,jammy} \ | |
| quay.io/centos/centos:7 \ | |
| fedora:{34,35,36} \ | |
| rockylinux/rockylinux:{8,9}; | |
| do | |
| ( |
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 | |
| :: default : yabai -m config active_window_opacity 1; yabai -m config normal_window_opacity 1; | |
| # Focus | |
| shift + alt - home : yabai -m window --focus north | |
| shift + alt - j : yabai -m window --focus north | |
| shift + alt - end : yabai -m window --focus south | |
| shift + alt - k : yabai -m window --focus south | |
| shift + alt - delete : yabai -m window --focus west |