mirror of
https://github.com/notwa/rc
synced 2024-11-05 03:39:02 -08:00
Merge branch 'master' of github.com:notwa/rc
This commit is contained in:
commit
5a06a87e73
6 changed files with 476 additions and 9 deletions
449
README.md
449
README.md
|
@ -4,3 +4,452 @@ _(plus some little shell scripts)_
|
|||
|
||||
there's probably a lot of subtle things gone uncredited,
|
||||
but oh well.
|
||||
|
||||
## stuff defined in RC files
|
||||
|
||||
such as [.bashrc](/home/bashrc) and [.zshrc](/home/zshrc)
|
||||
but mostly [-shrc](/home/-shrc) and [.streamcrap](/home/streamcrap)
|
||||
|
||||
### reload
|
||||
|
||||
exec's the current shell.
|
||||
if it's `zsh`, it'll recompile `.zshrc` so everything actually reloads.
|
||||
|
||||
### ADDPATH
|
||||
|
||||
adds a directory to `$PATH` if it isn't already there.
|
||||
|
||||
### ify
|
||||
|
||||
pipes a command through another command, so you can pass arguments at the end as usual.
|
||||
|
||||
this is mainly useful for aliases. 99% of the time you'll use this with `less`.
|
||||
|
||||
```
|
||||
$ alias ll="ify less ls -ACX --group-directories-first --color=force"
|
||||
$ ll /etc
|
||||
```
|
||||
|
||||
### has
|
||||
|
||||
prints the result of `which` if the program is found, or shuts up and returns 1.
|
||||
|
||||
```
|
||||
export CC="$(has clang || has clang-3.6 || has gcc)"
|
||||
```
|
||||
|
||||
### revend
|
||||
|
||||
reverses the 4-byte endianness of a file. this is an in-place operation!
|
||||
|
||||
### exts
|
||||
|
||||
prints and sorts the most used file extensions in the CWD.
|
||||
|
||||
### freq
|
||||
|
||||
prints the most frequently used commands found in `~/.histfile`.
|
||||
arguments are passed to `head`.
|
||||
|
||||
```
|
||||
$ freq
|
||||
507 ls
|
||||
349 sudo
|
||||
308 git
|
||||
268 less
|
||||
259 e
|
||||
208 luajit
|
||||
188 :
|
||||
185 twitch
|
||||
138 th
|
||||
131 z
|
||||
```
|
||||
|
||||
that `:` is probably something i should fix.
|
||||
|
||||
### nocom
|
||||
|
||||
strips lines that begin with a `#` character.
|
||||
|
||||
### jrep
|
||||
|
||||
extracts ascii and japanese unicode characters.
|
||||
|
||||
### bomb
|
||||
|
||||
adds a Byte Order Mark to a file.
|
||||
|
||||
### cleanse
|
||||
|
||||
extracts readable ascii characters.
|
||||
|
||||
### rot13
|
||||
|
||||
rot13 with rotated numbers as well.
|
||||
|
||||
### unwrap
|
||||
|
||||
unwraps text that was wrapped using double-newlines as spacing,
|
||||
e.g. this readme file.
|
||||
|
||||
### picky + unused
|
||||
|
||||
attempts to print non-standard packages that were installed on an arch linux box,
|
||||
so you can reinstall them later on a fresh installation.
|
||||
|
||||
`unused` will print unused packages instead.
|
||||
|
||||
seems to be broken since the functionality of `tee -` changed.
|
||||
|
||||
### makepkgf + rakef
|
||||
|
||||
make the freakin' package!
|
||||
|
||||
### trash
|
||||
|
||||
given a number of bytes, outputs binary garbage from `/dev/random`.
|
||||
|
||||
### yt
|
||||
|
||||
watches a youtube video through mpv with a bunch of audio filtering crap.
|
||||
|
||||
can be given a full URL or just a video ID.
|
||||
remaining arguments are passed to mpv.
|
||||
|
||||
### twitch + hitbox
|
||||
|
||||
watches twitch/hitbox streams through mpv with a bunch of audio filtering crap.
|
||||
|
||||
give it a username.
|
||||
remaining arguments are passed to mpv.
|
||||
|
||||
run `alias watchstream=watchstream2` to use `livestreamer` if `youtube-dl` is acting up.
|
||||
|
||||
## shell scripts
|
||||
|
||||
most (but not all) stuff that's written for bash will work in zsh too.
|
||||
if it just says `(sh)` then it'll probably work on anything,
|
||||
but probably depends on GNU awk.
|
||||
|
||||
### [arith](/sh/arith) + [hex](/sh/hex)
|
||||
|
||||
(zsh) does arithmetic using the shell.
|
||||
|
||||
```
|
||||
$ noglob arith 10**(6/20.)
|
||||
1.9952623149688795
|
||||
$ hex 0x221EA8-0x212020
|
||||
0000FE88
|
||||
```
|
||||
|
||||
### [aur](/sh/aur)
|
||||
|
||||
(bash) downloads, edits, makes, and installs packages from the [AUR.](//aur.archlinux.org)
|
||||
|
||||
it's a little broken.
|
||||
|
||||
```
|
||||
$ aur -eyoI cmdpack-uips applyppf
|
||||
```
|
||||
|
||||
### [cdbusiest](/sh/cdbusiest) + [dbusiest](/sh/dbusiest)
|
||||
|
||||
(zsh) cd to the directory with the most files in it (recursive).
|
||||
dbusiest just outputs file counts without changing the directory.
|
||||
|
||||
useful for finding the biggest stinkers when archiving.
|
||||
|
||||
```
|
||||
$ cd
|
||||
$ cdbusiest
|
||||
197195 src
|
||||
$ pwd
|
||||
/home/notwa/src
|
||||
```
|
||||
|
||||
### [colors](/sh/colors)
|
||||
|
||||
(bash) print out all the foreground and background terminal color combinations.
|
||||
a 76-character script!
|
||||
|
||||
### [compandy](/sh/compandy)
|
||||
|
||||
(zsh) a dumb thing to generate compand arguments for ffmpeg audio filters.
|
||||
|
||||
### [confirm](/sh/confirm)
|
||||
|
||||
(bash/zsh) displays a simple yes/no prompt and returns 0 or 1 respectively.
|
||||
|
||||
```
|
||||
$ confirm && echo yay || echo nay
|
||||
Continue? [y/N] y
|
||||
yay
|
||||
$ confirm && echo yay || echo nay
|
||||
Continue? [y/N] n
|
||||
nay
|
||||
```
|
||||
|
||||
### [days](/sh/days)
|
||||
|
||||
(bash) compute days since a date.
|
||||
|
||||
```
|
||||
$ days 'January 1 1970'
|
||||
16979
|
||||
```
|
||||
|
||||
### [dfu](/sh/dfu)
|
||||
|
||||
(sh) pretty df output in GiB.
|
||||
|
||||
```
|
||||
$ dfu
|
||||
Filesystem Used Max Misc
|
||||
/ 6.90 13.75 0.75
|
||||
/dev 0.00 0.45 0.00
|
||||
/boot 0.02 0.10 0.00
|
||||
/media/2tb 1528.48 1740.49 93.17
|
||||
```
|
||||
|
||||
### [e](/sh/e)
|
||||
|
||||
(zsh) wraps around $EDITOR to run as root if necessary. needs some work.
|
||||
|
||||
```
|
||||
$ e /etc/sudoers
|
||||
[sudo] password for notwa:
|
||||
```
|
||||
|
||||
### [gitall](/sh/gitall)
|
||||
|
||||
(zsh) asks you to update most of the git repos it finds. i don't really use this.
|
||||
|
||||
### [is\_empty](/sh/is_empty)
|
||||
|
||||
(bash) returns 0 if the directory given by $1 is empty.
|
||||
|
||||
### [isup](/sh/isup)
|
||||
|
||||
(zsh) returns 0 if a website returns a 2xx HTTP code.
|
||||
|
||||
```
|
||||
$ isup google.com && echo yay || echo nay
|
||||
yay
|
||||
$ isup fdhafdslkjgfjs.com && echo yay || echo nay
|
||||
nay
|
||||
```
|
||||
|
||||
### [logs](/sh/logs)
|
||||
|
||||
(bash/zsh) just wraps around `journalctl`. i don't remember how it works exactly.
|
||||
|
||||
### [lol-twitter](/sh/lol-twitter)
|
||||
|
||||
(zsh) checks if usernames (from stdin) are available on twitter.
|
||||
|
||||
seems to return a 403 code these days, but you could probably fix that.
|
||||
|
||||
### [lsarchive](/sh/lsarchive) + [unarchive](/sh/unarchive)
|
||||
|
||||
(zsh) guess what these do. written by Sorin Ionescu.
|
||||
includes autocomplete files.
|
||||
|
||||
### [lsz](/sh/lsz)
|
||||
|
||||
(zsh) a needlessly fancy alternative to `ls`.
|
||||
|
||||
based on lsf or something, which might be [a gist somewhere.](//gist.github.com/notwa)
|
||||
you can find [similar, more mature projects on github.](//github.com/trapd00r/ls--)
|
||||
|
||||
### [minutemaid](/sh/minutemaid)
|
||||
|
||||
(zsh) returns 0 if the current minute is divisible by a number.
|
||||
|
||||
note that a minute is relative to the seconds since the epoch,
|
||||
not the minute of the hour.
|
||||
|
||||
```
|
||||
# crontab usage:
|
||||
* * * * * minutemaid 9 cd repo && git pull # runs every nine minutes
|
||||
```
|
||||
|
||||
### [mkgist](/sh/mkgist)
|
||||
|
||||
(bash) makes a (mostly) empty gist and pulls it so you never have to visit the site.
|
||||
i think this is broken.
|
||||
|
||||
### [monitor](/sh/monitor)
|
||||
|
||||
(zsh) literally just `watch` as a shell script. kinda nice though.
|
||||
|
||||
### [mw](/sh/mw) + [mw-cyg](/sh/mw-cyg)
|
||||
|
||||
(zsh) manages a ton of environment variables for cross-compiling programs.
|
||||
you'll want to tweak this if you use it yourself.
|
||||
|
||||
### [now](/sh/now)
|
||||
|
||||
(bash) returns the local date-time in a sortable format.
|
||||
will take a date or a file as an argument too.
|
||||
|
||||
```
|
||||
$ now
|
||||
2016-06-27_19551873
|
||||
$ now ./now
|
||||
2016-03-12_25288645
|
||||
$ now '@1234567890'
|
||||
2009-02-13_55890000
|
||||
```
|
||||
|
||||
### [pacbm](/sh/pacbm)
|
||||
|
||||
(zsh) lists installed pacman packages by their filesize, and the sum, ascending.
|
||||
requires `expac`.
|
||||
|
||||
```
|
||||
$ pacbm | head -n -1 | tail -2
|
||||
155.67M clang
|
||||
192.34M chromium
|
||||
```
|
||||
|
||||
### [pacman-list-disowned](/sh/pacman-list-disowned)
|
||||
|
||||
(zsh?) lists disowned pacman files. this might take a while.
|
||||
written by Benjamin Boudreau and Sorin Ionescu.
|
||||
|
||||
### [pause](/sh/pause)
|
||||
|
||||
(bash/zsh) pause; the companion script of `confirm`.
|
||||
|
||||
```
|
||||
$ pause
|
||||
Press any key to continue
|
||||
$
|
||||
```
|
||||
|
||||
### [pre](/sh/pre)
|
||||
|
||||
(bash/zsh) dumps all the #defines that `$CC $CFLAGS $LDFLAGS` would result in.
|
||||
|
||||
```
|
||||
$ pre | shuf | head -10
|
||||
#define __NO_MATH_INLINES 1
|
||||
#define __FLT_MIN_10_EXP__ (-37)
|
||||
#define __INT_LEAST32_TYPE__ int
|
||||
#define __FLT_MIN_EXP__ (-125)
|
||||
#define __LDBL_MIN_EXP__ (-16381)
|
||||
#define __UINT8_C_SUFFIX__
|
||||
#define __WINT_UNSIGNED__ 1
|
||||
#define __INT_LEAST16_FMTd__ "hd"
|
||||
#define __UINT_FAST32_MAX__ 4294967295U
|
||||
#define __SSE__ 1
|
||||
```
|
||||
|
||||
### [psbm](/sh/psbm)
|
||||
|
||||
(sh) lists processes by their memory usage, and the sum, ascending.
|
||||
|
||||
```
|
||||
$ psbm | head -n -1 | tail -2
|
||||
155.91M 795 chromium
|
||||
171.04M 832 chromium
|
||||
```
|
||||
|
||||
### [randir](/sh/randir)
|
||||
|
||||
(sh) outputs a random directory in the working directory.
|
||||
seems to return `./` sometimes, whoops.
|
||||
|
||||
```
|
||||
$ randir
|
||||
./sh
|
||||
```
|
||||
|
||||
### [sc](/sh/sc)
|
||||
|
||||
(bash) uploads given files to dropbox and returns a direct link for sharing.
|
||||
you'll want to tweak this if you use it yourself.
|
||||
|
||||
has some extra logic for screenshots created by `scropt`.
|
||||
|
||||
### [scramble](/sh/sc)
|
||||
|
||||
(bash) scrambles text in a predictable way using regex.
|
||||
|
||||
(bhas) sacbremls ttex in a pdrceailtbe way unsig reegx.
|
||||
|
||||
### [screeny](/sh/screeny) + [unscreen](/sh/unscreen)
|
||||
|
||||
(zsh) sets up and detaches a screen for running daemons as other users, etc.
|
||||
|
||||
will close any existing screens of the same name using its companion script, unscreen.
|
||||
|
||||
e.g. run znc as user znc in a screen called znc: `screeny znc znc znc -f`. znc!
|
||||
|
||||
### [scropt](/sh/scropt)
|
||||
|
||||
(bash) runs `scrot` through `optipng` and saves to `~/play/$(now).png`.
|
||||
|
||||
```
|
||||
$ ~/sh/sc $(~/sh/scropt -s -d0.5)
|
||||
```
|
||||
|
||||
### [similar](/sh/similar)
|
||||
|
||||
(sh) sorts stdin and colors similarities between adjacent lines. kinda broken.
|
||||
|
||||
### [slit](/sh/slit)
|
||||
|
||||
(zsh) views specific columns of text.
|
||||
via [pretzo.](https://github.com/sorin-ionescu/prezto/)
|
||||
|
||||
```
|
||||
$ df | slit 1 5
|
||||
Filesystem Use%
|
||||
dev 0%
|
||||
run 1%
|
||||
/dev/sda6 30%
|
||||
tmpfs 3%
|
||||
tmpfs 0%
|
||||
tmpfs 1%
|
||||
tmpfs 1%
|
||||
```
|
||||
|
||||
### [sram](/sh/sram)
|
||||
|
||||
(zsh) converts between a couple saveram formats for N64 emulators.
|
||||
|
||||
### [sv](/sh/sv)
|
||||
|
||||
(zsh) i have no idea?
|
||||
|
||||
### [trunc](/sh/trunc)
|
||||
|
||||
(bash) truncates text to fit within your terminal using the unicode character `…`.
|
||||
|
||||
```
|
||||
$ echo $COLUMNS
|
||||
64
|
||||
$ unwrap /usr/share/licenses/common/GPL3/license.txt | trunc | head
|
||||
GNU GENERAL PUBLIC LICENSE …
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.…
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license fo…
|
||||
|
||||
The licenses for most software and other practical works are …
|
||||
```
|
||||
|
||||
## submodules
|
||||
|
||||
probably horribly outdated
|
||||
|
||||
### [meow.sh](//github.com/notwa/meow.sh)
|
||||
|
||||
scrapes and downloads nyaa torrents.
|
||||
|
||||
### [z](//github.com/rupa/z)
|
||||
|
||||
cd to the most "frecently" used directory matching a regex.
|
||||
|
|
|
@ -17,6 +17,8 @@ ADDPATH "$HOME/opt/local/bin"
|
|||
# https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1380084
|
||||
export SSH_AUTH_SOCK=0
|
||||
|
||||
export OMP_NUM_THREADS=4
|
||||
|
||||
#r="$HOME/.gem/ruby/2.2.0/bin"
|
||||
#mkdir -p "$r" && ADDPATH "$r"
|
||||
#unset r
|
||||
|
|
|
@ -103,6 +103,7 @@ set nobomb " bombs are bad ok
|
|||
set undofile " remember undos across files/sessions
|
||||
set diffopt+=iwhite " ignore whitespace in diff command
|
||||
set ttimeoutlen=50 " make changing modes a bit snappier
|
||||
set hidden " allow swapping out of unsaved buffers
|
||||
if has('mksession')
|
||||
set sessionoptions=blank,buffers,curdir,options,folds,tabpages,winsize,resize,winpos
|
||||
end
|
||||
|
@ -165,7 +166,7 @@ set tabstop=8 shiftwidth=4 expandtab softtabstop=4
|
|||
if has('autocmd')
|
||||
augroup tabs
|
||||
au!
|
||||
au BufRead,BufNewFile *.c,*.h,*.cpp,*.hpp,*.cc,*.hh call TabEight()
|
||||
" au BufRead,BufNewFile *.c,*.h,*.cpp,*.hpp,*.cc,*.hh call TabEight()
|
||||
au BufRead,BufNewFile PKGBUILD call TabTwo()
|
||||
au FileType ruby call TabTwo()
|
||||
au BufRead,BufNewFile *.bt,*.1sc call TabFour()
|
||||
|
@ -471,6 +472,6 @@ let g:airline#extensions#whitespace#mixed_indent_format = '‼ %s'
|
|||
" machine-specific configs {{{1
|
||||
|
||||
let s:hostname = hostname()
|
||||
if s:hostname == "phantom-pi"
|
||||
if s:hostname == "phantom-pi" || s:hostname == "wraith"
|
||||
colo Tomorrow-Night
|
||||
endif
|
||||
|
|
|
@ -156,3 +156,6 @@ reload() {
|
|||
}
|
||||
|
||||
unset x
|
||||
|
||||
[ -e "/home/$USER/opt/local/bin/torch-activate" ] && \
|
||||
. "/home/$USER/opt/local/bin/torch-activate"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/zsh
|
||||
# crontab usage:
|
||||
#* * * * * minutemaid 9 cd repo; git pull # runs every nine minutes
|
||||
#* * * * * minutemaid 9 cd repo && git pull # runs every nine minutes
|
||||
|
||||
local offset=0 opt=
|
||||
while getopts 'o:h' opt; do
|
||||
|
|
24
sh/mw
24
sh/mw
|
@ -4,6 +4,8 @@ mkdir -p ~/opt/mingw
|
|||
_mw_enabled=0
|
||||
_mw_host32=i686-w64-mingw32.static
|
||||
_mw_host64=x86_64-w64-mingw32.static
|
||||
#_mw_hostmips=mips-linux-gnu
|
||||
_mw_hostmips=mips-unknown-elf
|
||||
|
||||
if [[ "$(uname -m)" == armv7l ]]; then
|
||||
_mw_hostarm=./
|
||||
|
@ -27,7 +29,7 @@ mw-disable() {
|
|||
|
||||
local e=
|
||||
for e in PATH PREFIX CC CPP CXX LD CFLAGS CPPFLAGS CXXFLAGS LDFLAGS \
|
||||
AR RANLIB RC WINDRES OBJCOPY COMPILER_PATH SDL_CFLAGS SDL_LDLIBS; do
|
||||
AR RANLIB RC WINDRES OBJDUMP OBJCOPY COMPILER_PATH SDL_CFLAGS SDL_LDLIBS; do
|
||||
local v="${_mw_[$e]}"
|
||||
[ -n "$v" ] && export "$e=$v" || unset "$e"
|
||||
done
|
||||
|
@ -39,10 +41,13 @@ mw-enable() {
|
|||
_mw_enabled=1
|
||||
|
||||
_mw_host=${1:-$_mw_host}
|
||||
_mw_usr=${2:-/usr}
|
||||
|
||||
local _mw_misc=$_mw_usr/$_mw_host
|
||||
local _mw_bin=$_mw_usr/bin
|
||||
if [ -n "$2" ]; then
|
||||
local _mw_misc=$2/$_mw_host
|
||||
local _mw_bin=$2/bin
|
||||
else
|
||||
local _mw_misc=/usr
|
||||
local _mw_bin=/usr/bin
|
||||
fi
|
||||
|
||||
local _mw_prefix=~/opt/$_mw_host
|
||||
mkdir -p "$_mw_prefix"
|
||||
|
@ -51,7 +56,8 @@ mw-enable() {
|
|||
[ -d "$tmp" ] || tmp+='-'
|
||||
|
||||
set -- CC gcc CXX g++ CPP cpp LD ld AR ar \
|
||||
RANLIB ranlib RC windres WINDRES windres OBJCOPY objcopy
|
||||
RANLIB ranlib RC windres WINDRES windres \
|
||||
OBJDUMP objdump OBJCOPY objcopy
|
||||
while _mw_export "$1" "$tmp$2"; do
|
||||
shift 2
|
||||
done
|
||||
|
@ -84,6 +90,12 @@ mw() {
|
|||
mw-enable $_mw_host64 ~/src/mxe/usr
|
||||
export CFLAGS="-mwin32 $CFLAGS"
|
||||
export CXXFLAGS="$CFLAGS"
|
||||
elif [[ "$1" == mips ]]; then
|
||||
mw-enable $_mw_hostmips ~/opt/$_mw_hostmips
|
||||
export CC="$_mw_hostmips-gcc"
|
||||
export CXX="$_mw_hostmips-g++"
|
||||
export CFLAGS="-Os -I $HOME/opt/mips-linux-gnu/include"
|
||||
export LDFLAGS="-L $HOME/opt/mips-unknown-elf/mips-unknown-elf/lib -L $HOME/opt/mips-unknown-elf/mips-unknown-elf/lib"
|
||||
elif [[ "$1" == 32c ]]; then
|
||||
mw-enable $_mw_host32 ~/src/mxe/usr
|
||||
export CC="$_mw_host32-clang"
|
||||
|
|
Loading…
Reference in a new issue