summaryrefslogtreecommitdiff
path: root/.shells/alias.sh
blob: f79e367a7bf4928630a0307c3e91e4056ce21d02 (about) (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
alias ll='ls -l'
alias grep='grep --color=auto'

alias vim='nvim'
alias vi='nvim'

#git
alias ga='git add'
alias gaa='git add .'
alias gc='git commit -m'
alias gp='git push -u origin'
alias gpm='git push -u origin master'
alias gpd='git push -u origin developer'
alias gs='git status'

#pacman | yay
alias yeet='paru -Rsc'

# weather
alias weather="curl wttr.in"

alias ls='ls -la --color'
alias sb='sudo systemctl start bluetooth'
alias mykeys='setxkbmap -option caps:escape'
alias logout='pkill -U $USER'
#alias neofetch='neofetch | lolcat'
alias b='bluetoothctl'
alias ba='bluetooth-autoconnect'
alias music='mocp'
alias ytd="yt-dlp"
alias c="pavucontrol"
alias r="ranger"
alias klight="brightnessctl --device='tpacpi::kbd_backlight' set 1"

##yarn
alias sweb='BROWSER="firefox" yarn start'