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
| #!/home/irandms/.guix-home/profile/bin/fish | |
| # 1. Check for arguments | |
| # We check if the argument count is 0. If so, print help and exit. | |
| if test (count $argv) -eq 0 | |
| echo "Error: No game specified." | |
| echo "Usage: "(status filename)" <game_process_substring>" | |
| echo "Example: "(status filename)" helldivers2" | |
| exit 1 | |
| end |
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
| " Vim 8 / nvim only things are commented out with 3 double quotes | |
| call plug#begin() | |
| Plug 'sjl/badwolf' | |
| Plug 'airblade/vim-gitgutter' | |
| Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
| Plug 'SirVer/ultisnips' | |
| Plug 'honza/vim-snippets' |
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 | |
| # user-config things | |
| PICTURES_DIR="/home/irandms/Pictures" | |
| FILE_NAME="Screenshot from $DATE.png" | |
| HOST="just.another.computer" | |
| URL_END="sharex/$YR/$MO" | |
| REMOTE_DIR="$HOME/public_html/$URL_END" | |
| # take the screenshot |