blob: 7db59df0c30447266a841883e708440b430dfcd4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/bin/sh
# a file containing POSIX shell-compliant aliases so aliases can be consistent between shells.
alias \
ls='ls -Fh'\
ll='ls -Fhl'\
la='ls -Fha'\
lr='lr -G'\
lynx='lynx -cookies- -vikeys'\
df='df -h'\
du='du -h'\
gs='git status --short --branch || ls'\
gsh='git show'\
gd='git diff'\
gl='git log --graph --pretty=log'\
gco='git checkout'\
gb='git branch'\
gm='git merge'\
gst='git stash'\
ga='git add'\
gmv='git mv'\
grm='git rm'\
gc='git commit'\
gca='gc --amend'\
gt='git tag'\
gp='git push'\
gu='git pull'\
gf='git fetch'\
gr='git rebase'\
gra='gr --abort'\
grc='gr --continue'\
grs='gr --skip'\
cp='cp -v' \
mv='mv -v'\
sl='streamlink -p mpv'\
pa='doas pkg_add -D snap'\
pd='doas pkg_delete'\
pi='pkg_info -D snap'\
pl='pkglocate'\
e="\$EDITOR"\
yt='yt-dlp'\
ya="yt-dlp --config-location \$HOME_ETC/yt-dlp/config-music"\
dl="ftp"\
unwww='bombadillo'\
loveread="ssh mic 'tail ~char/love.txt'"\
logout='clear&&exit'
|