Another copy of my dotfiles. Because I don't completely trust GitHub.
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.

34 lines
1.0 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. #!/usr/bin/zsh
  2. alias feh="feh --scale-down --auto-zoom"
  3. alias cclear="$(which clear)"
  4. alias clear="clear && paleofetch"
  5. alias neofetch="neofetch --ascii ~/.config/neofetch/ascii.txt"
  6. alias idea="/home/yigit/.local/share/JetBrains/Toolbox/apps/IDEA-U/ch-0/201.7223.91/bin/idea.sh"
  7. alias open=xdg-open
  8. alias rm="rm -i"
  9. alias clip="xclip -selection clipboard"
  10. alias g="git "
  11. alias t="TERM=screen-256color-bce tmux"
  12. alias tn="TERM=screen-256color-bce tmux new -s "
  13. alias tat="TERM=screen-256color-bce tmux a -t "
  14. alias yain="yay -Syu "
  15. alias ls="ls --color"
  16. alias yay="yay --sudoloop"
  17. # Suffix aliases
  18. alias -g G=" | rg"
  19. alias gshh="gcloud cloud-shell ssh --authorize-session"
  20. # YeetClock
  21. alias light="curl 'http://yeetclock/setcolor?R=136&G=192&B=208'"
  22. alias lights_off="curl 'http://yeetclock/setcolor?R=2000&G=10&B=000&O=0'"
  23. # Git
  24. alias ga="git add"
  25. alias gcl="git clone --recursive"
  26. alias gc="git commit"
  27. alias gcm="git commit -m"
  28. alias gp="git push"
  29. alias gpall="git remote | xargs -I R git push R"
  30. alias gpl="git pull"