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 | |
# Generate list from ~/.ssh/config | |
list=$(grep -i "^Host " ~/.ssh/config | awk '{print $2}' | sort -u) | |
target=$(echo "$list" | fzf --prompt="Select a host: ") | |
if [[ -n $target ]]; then | |
echo "Connecting to $target..." | |
ssh "$target" |
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
/* | |
This hasn't been maintained in years. | |
*/ | |
/* Main site / Videos */ | |
#container.ytd-masthead, | |
#tabsContainer.paper-tabs, | |
#channel-header.ytd-c4-tabbed-header-renderer { | |
background: #44475a; | |
} |
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
# base | |
ansible | |
bash-completion | |
emacs | |
git | |
htop | |
neovim | |
pass | |
sshfs | |
stow |