my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
3.7 KiB

3 years ago
  1. # lol
  2. Plugin for adding catspeak aliases, because why not.
  3. To use it, add `lol` to the plugins array in your zshrc file:
  4. ```zsh
  5. plugins=(... lol)
  6. ```
  7. ## Aliases
  8. | Alias | Command |
  9. | ------------ | --------------------------------------------------------------- |
  10. | `:3` | `echo` |
  11. | `alwayz` | `tail -f` |
  12. | `bringz` | `git pull` |
  13. | `btw` | `nice` |
  14. | `byes` | `exit` |
  15. | `chicken` | `git add` |
  16. | `cya` | `reboot` |
  17. | `donotwant` | `rm` |
  18. | `dowant` | `cp` |
  19. | `gimmeh` | `touch` |
  20. | `gtfo` | `mv` |
  21. | `hackzor` | `git init` |
  22. | `hai` | `cd` |
  23. | `icanhas` | `mkdir` |
  24. | `ihasbucket` | `df -h` |
  25. | `iminurbase` | `finger` |
  26. | `inur` | `locate` |
  27. | `invisible` | `cat` |
  28. | `iz` | `ls` |
  29. | `kthxbai` | `halt` |
  30. | `letcat` | `git checkout` |
  31. | `moar` | `more` |
  32. | `nomnom` | `killall` |
  33. | `nomz` | `ps aux` |
  34. | `nowai` | `chmod` |
  35. | `oanward` | `git commit -m` |
  36. | `obtw` | `nohup` |
  37. | `onoz` | `cat /var/log/errors.log` |
  38. | `ooanward` | `git commit -am` |
  39. | `plz` | `pwd` |
  40. | `pwned` | `ssh` |
  41. | `rtfm` | `man` |
  42. | `rulz` | `git push` |
  43. | `tldr` | `less` |
  44. | `violenz` | `git rebase` |
  45. | `visible` | `echo` |
  46. | `wtf` | `dmesg` |
  47. | `yolo` | `git commit -m "$(curl -s http://whatthecommit.com/index.txt)"` |
  48. ## Usage Examples
  49. ```sh
  50. # mkdir new-directory
  51. icanhas new-directory
  52. # killall firefox
  53. nomnom firefox
  54. # chmod u=r,go= some.file
  55. nowai u=r,go= some.file
  56. # ssh [email protected]
  57. pwned [email protected]
  58. # git commit -m "$(curl -s http://whatthecommit.com/index.txt)"
  59. yolo
  60. ```