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
| set volume output volume ((get output volume in (get volume settings)) + 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
| https://github.com/atomicstack/setup-scripts/blob/main/rebuild-tmux.sh |
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
| lepton ~/bash_perl zmodload zsh/sched | |
| lepton ~/bash_perl sched --help | |
| lepton ~/bash_perl sched | |
| lepton ~/bash_perl echo $zsh_scheduled_events | |
| lepton ~/bash_perl sched -o +10 echo hello world | |
| lepton ~/bash_perl echo $zsh_scheduled_events | |
| 1640831449:-o:echo hello world | |
| lepton ~/bash_perl | |
| lepton ~/bash_perl echo $zsh_scheduled_events |
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 | |
| for f in /usr/share/figlet/*; do | |
| font_name=$(basename "$f" | awk -F '.' '{print $1}') | |
| message=" $font_name " | |
| banner=$(toilet --filter border --font $font_name --termwidth "$message" 2>/dev/null) | |
| [[ -z "$banner" ]] && continue | |
| echo -e "$font_name:\n$banner\n" | |
| 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
| % sudo cp -v $HOME/git_tree/zsh/Completion/Unix/Command/_tmux /opt/homebrew/Cellar/zsh/5.8_1/share/zsh/functions/_tmux |
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
| javascript console: | |
| to_fetch = []; $('.machine_names').each(function(i, item) { var u = $(item).attr('href'); if (u.match('rar$')) { to_fetch.push(window.location.origin + "/" + u) } }); console.log(JSON.stringify(to_fetch)) | |
| shell: | |
| jq -r '.[]' < 'kb6.json' | vipe | ( while read u; do wget --continue --no-glob "$u"; sleep 60; 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
| find $PWD -type d | ( while read d; do pushd $d; for mp3_filename in *.mp3(N); do lame --quiet --decode "$mp3_filename" && echo $PWD/$(basename "$PWD/$ | |
| mp3_filename" .mp3).wav | tee -a converted.txt; done; popd; done ) | ts '[%F %T]' |
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
| find . -type f -print0 | xargs -0 sha256sum | pv -l -s $( find . -type f | wc -l ) | sponge | perl -naE 'my $hash = shift @F; $seen{$hash}++ or next; $ENV{UNLINK_FILES} and unlink "@F"; my $result = $! ? "failed" : ""; say qq{unlinked @F $result}' |
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
| brew install --head tmux | |
| brew upgrade --fetch-HEAD tmux |
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 brew-active-path() { | |
| brew info "$1" | perl -naE 'm/[*]$/ and say($F[0])' | |
| } |