├── 16 ├── LICENSE.md ├── README.md ├── bat ├── bcol ├── eat ├── efi ├── ff ├── git ├── gj ├── grt ├── gsu ├── kh ├── mks ├── mp3 ├── mus ├── n ├── np ├── pal ├── panes ├── pb ├── pfe ├── rec ├── scr ├── shuffle ├── webcam ├── x ├── xeph └── z /16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/16 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dylan's Scripts 2 | -------------------------------------------------------------------------------- /bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/bat -------------------------------------------------------------------------------- /bcol: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | xsetroot -solid \#"${1:-c8e1ff}" 4 | -------------------------------------------------------------------------------- /eat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/eat -------------------------------------------------------------------------------- /efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/efi -------------------------------------------------------------------------------- /ff: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo | exec env - su -c 'DISPLAY=:0 firefox --allow-downgrade' webshit 4 | -------------------------------------------------------------------------------- /git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/git -------------------------------------------------------------------------------- /gj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/gj -------------------------------------------------------------------------------- /grt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/grt -------------------------------------------------------------------------------- /gsu: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | git submodule update --remote 4 | -------------------------------------------------------------------------------- /kh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/kh -------------------------------------------------------------------------------- /mks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/mks -------------------------------------------------------------------------------- /mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/mp3 -------------------------------------------------------------------------------- /mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/mus -------------------------------------------------------------------------------- /n: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | printf '%s\n' "$(date +%d/%m/%y): $*" >> ~/notes 4 | -------------------------------------------------------------------------------- /np: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/np -------------------------------------------------------------------------------- /pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/pal -------------------------------------------------------------------------------- /panes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/panes -------------------------------------------------------------------------------- /pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/pb -------------------------------------------------------------------------------- /pfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/pfe -------------------------------------------------------------------------------- /rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/rec -------------------------------------------------------------------------------- /scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/scr -------------------------------------------------------------------------------- /shuffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/shuffle -------------------------------------------------------------------------------- /webcam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/webcam -------------------------------------------------------------------------------- /x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/x -------------------------------------------------------------------------------- /xeph: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | Xephyr -br -ac -noreset -screen 800x600 :1 4 | -------------------------------------------------------------------------------- /z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanaraps/bin/HEAD/z --------------------------------------------------------------------------------