aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/scripts/what_alias.sh
blob: 4b796404718c9892faddb1767a4044e7e2e38eee (plain)
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
46
47
48
49
50
51
52
53
54
55
56
key='h'
while [[ $key != 'q' ]]
do
echo ""
echo "╓───────────────────────[ alias list ]─[ i3 ]"
echo "╙──────────────────────────────────────────────────────── ─ ─"
echo "╓──────────────────────────────────────────────────────────────────────────────────────╖"
echo "║ l             -> ls -F --color=auto        ll         -> ls -lhF --color=auto        ║"
echo "║ la            -> ls -lahF --color=auto     ..         -> cd ..                       ║"
echo "║ ...           -> cd ../..                  ../..      -> cd ../..                    ║"
echo "║ rmrf          -> rm -rf                    psef       -> ps -ef                      ║"
echo "║ mkdir         -> mkdir -p                  cp         -> cp -r                       ║"
echo "║ scp           -> scp -r                    xsel       -> xsel -b                     ║"
echo "║ fuck          -> sudo \$(fc -ln -1)         v/vi/emacs -> vim                         ║"
echo "║ g             -> git                       ga         -> git add                     ║"
echo "║ gc            -> git commit -m             gcs        -> git commit -S -m            ║"
echo "║ gs            -> git status                gd         -> git diff                    ║"
echo "║ gm            -> git merge                 gr         -> git rebase                  ║"
echo "║ gp            -> git push                  gu         -> git pull                    ║"
echo "║ gco           -> git checkout              gcs        -> git commit -S -m            ║"
echo "║ gap           -> git add -p                matrix     -> cmatrix -b                  ║"
echo "║ ag            -> search in code            tree       -> tree with cool options      ║"
echo "║ tempwatch     -> sensors in while loop     toiletlist -> toilet list font            ║"
echo "║ future        -> generate font text        pacman     -> sudo pacman                 ║"
echo "║ lol           -> lolcat                    update     -> yaourt -Syu                 ║"
echo "║ off           -> poweroff                  ZZ         -> quit                        ║"
echo "║ dldstart      -> aria2d start              dldstop    -> aria2d stop                 ║"
echo "║ dldstatus     -> aria2d status             dll        -> list torrents dls           ║"
echo "║ dllw          -> watch list torrent dls    dla        -> add torrent                 ║"
echo "║ diana         -> use diana with tocken     dlrm       -> rm torrent                  ║"
echo "║ dlrs          -> resume torrent            dlp        -> pause torrent               ║"
echo "║ disks         -> disks info                record     -> record current screen       ║"
echo "║ nullify       -> no fucking output log     ff         -> firefox-developer nullified ║"
echo "║ lo            -> libreoffice nullified     le         -> colorized less              ║"
echo "║ fixit         -> fixi pacman db            printer    -> system-config-printer       ║"
echo "║ bat           -> show bat %                rl         -> source zsh alias            ║"
echo "║ rssyoutube    -> youtube rss               rssblog    -> blogs rss                   ║"
echo "║ i3lock        -> i3lock-fancy              weatherMans -> .                          ║"
echo "║ weatherChap   -> .                         vpn        -> vpn fait maison             ║"
echo "║ cal           -> ikhal                     cals       -> sync cals                   ║"
echo "║ mm            -> sync and mutt             tm         -> attach tmux session X       ║"
echo "║ mdm           -> read md file like manpage mixer      -> alsamixer                   ║"
echo "║ t             -> task                      ts         -> task sync                   ║"
echo "║ tcal          -> task calendar             thistory   -> task history                ║"
echo "║ thgraphdaily  -> task burndown.daily       tgraphweek -> task burndown.week          ║"
echo "║ tgraphmonth   -> task burndown.week        tnext      -> get the next tasks          ║"
echo "║ tdone         -> .                         tactive    -> .                           ║"
echo "║ tlistprojects -> .                         tlistallprojects -> .                     ║"
echo "║ c             -> colorized cat             stowroot   -> sudo stow -t /              ║"
echo "║                                                                                      ║"
echo "║ email <to> <subject> <text>                                                          ║"
echo "╙──────────────────────────────────────────────────────────────────────────────────────╜"

read -n1 -r key

done