Created
May 21, 2019 11:16
-
-
Save codeitlikemiley/19007b0084d94c4148501d8952f0be81 to your computer and use it in GitHub Desktop.
i3 cmds
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/sh | |
| vidlist=" | |
| status bar https://www.youtube.com/watch?v=gKumet6b-WY | |
| feh | |
| st (terminal) https://www.youtube.com/watch?v=9H75enWM22k | |
| i3 (window manager) https://www.youtube.com/watch?v=GKviflL9XeI | |
| mutt (email) https://www.youtube.com/watch?v=2U3vRbF7v5A | |
| ncmpcpp (music player) https://www.youtube.com/watch?v=sZIEdI9TS2U | |
| newsboat (RSS reader) https://www.youtube.com/watch?v=dUFCRqs822w | |
| ranger (file manager) https://www.youtube.com/watch?v=L6Vu7WPkoJo | |
| zathura (pdf viewer) https://www.youtube.com/watch?v=V_Iz4zdyRM4 | |
| gpg keys https://www.youtube.com/watch?v=DMGIlj7u7Eo | |
| calcurse (calendar) https://www.youtube.com/watch?v=hvc-pHjbhdE | |
| urlview https://www.youtube.com/watch?v=IgzpAjFgbCw | |
| colorschemes with pywal https://www.youtube.com/watch?v=Es79N_9BblE | |
| vi mode in shell https://www.youtube.com/watch?v=GqoJQft5R2E | |
| " | |
| echo "$vidlist" | grep -P "^$(echo "$vidlist" | grep "https:" | sed 's/\t.*//g' | dmenu -i -p "Learn about what? (ESC to cancel)" -l 20 | awk '{print $1}')\s" | sed 's/.*\t//' | xargs -r mpv | |
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/sh | |
| vidlist=$(cat ~/.tutorials) | |
| echo "$vidlist" | grep -P "^$(echo "$vidlist" | grep "https:" | sed 's/\t.*//g' | dmenu -i -p "Learn about what? (ESC to cancel)" -l 20 | awk '{print $1}')\s" | sed 's/.*\t//' | xargs -r mpv | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment