-
Notifications
You must be signed in to change notification settings - Fork 0
/
alias_config.sh
64 lines (61 loc) · 2.18 KB
/
alias_config.sh
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
57
58
59
60
61
62
63
64
# _ _ _ _ _ _
# / \ (_)_ __ ___ ___ _ __| \ | | ___(_) __ _ ___( )___
# / _ \ | | '_ ` _ \ / _ \ '__| \| |/ _ \ |/ _` |/ _ \// __|
# / ___ \| | | | | | | __/ | | |\ | __/ | (_| | __/ \__ \
# /_/ \_\_|_| |_| |_|\___|_| |_| \_|\___|_|\__, |\___| |___/
# |___/
# _________ _ _ ____ ____ _ _ _
# |__ / ___|| | | | _ \ / ___| / \ | (_) __ _ ___
# / /\___ \| |_| | |_) | | / _ \ | | |/ _` / __|
# / /_ ___) | _ | _ <| |___ / ___ \| | | (_| \__ \
# /____|____/|_| |_|_| \_\\____| /_/ \_\_|_|\__,_|___/
# Blog https://aimerneige.com/
# Email aimer.neige@aimerneige.com
# GitHub https://github.com/AimerNeige
alias c="clear"
alias cb="cd .."
alias cls="clear"
alias lg="lazygit"
alias i="sudo apt install"
alias iy="sudo apt install -y"
alias gc="git clone"
alias gcd="git clone --depth=1"
alias sysinfo="neofetch"
alias cs="cowsay"
alias ud="sudo apt update"
alias ug="sudo apt upgrade"
alias udy="sudo apt update -y"
alias ugy="sudo apt upgrade -y"
alias udg="sudo apt update && sudo apt upgrade"
alias udgy="sudo apt update -y && sudo apt upgrade -y"
alias afm="sudo apt install --fix-missing"
alias afb="sudo apt install --fix-broken"
alias vim="nvim"
alias zshload="source ~/.zshrc"
alias zshedit="vim ~/.zshrc"
alias zshconfig="mate ~/.zshrc"
alias rg="ranger"
alias pi="pip install"
alias pi3="pip3 install"
alias py="python"
alias py3="python3"
alias gits="git status"
alias pipm="pip3 install --index-url https://pypi.douban.com/simple"
alias foldersize="du -sh"
alias unsetproxy="unset http_proxy https_proxy all_proxy"
alias btop="bpytop"
alias cht="cht.sh"
alias start="nautilus"
alias flathub="flatpak"
alias myip="curl icanhazip.com"
alias ghv="gh repo view -w"
alias icat="wezterm imgcat"
alias gedit="gnome-text-editor"
alias lastchange="git diff HEAD~1 HEAD"
alias aget="aria2c -c -s 16 -x 16 -k 1M -j 16"
alias ytdlpb="yt-dlp -f \"bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best\""
alias pea="source ./.venv/bin/activate"
alias pec="python -m venv ./.venv"
alias ped="deactivate"
alias pes="pip freeze > requirements.txt"
alias pei="pip install -r requirements.txt"