update aliases
This commit is contained in:
parent
c91320156a
commit
be9a4c8ab5
2 changed files with 12 additions and 4 deletions
|
|
@ -10,7 +10,7 @@
|
||||||
# to the user's home directory starting with `~/`.
|
# to the user's home directory starting with `~/`.
|
||||||
import:
|
import:
|
||||||
# - /path/to/alacritty.yml
|
# - /path/to/alacritty.yml
|
||||||
- ~/.config/alacritty/themes/rose-pine/dist/rose-pine-moon.yml
|
- ~/.config/alacritty/themes/catppuccin/catppuccin-macchiato.yml
|
||||||
# Any items in the `env` entry below will be added as
|
# Any items in the `env` entry below will be added as
|
||||||
# environment variables. Some entries may override variables
|
# environment variables. Some entries may override variables
|
||||||
# set by alacritty itself.
|
# set by alacritty itself.
|
||||||
|
|
|
||||||
|
|
@ -8,13 +8,17 @@ alias pdw="pwd"
|
||||||
#search content with ripgrep
|
#search content with ripgrep
|
||||||
alias rg="rg --sort path"
|
alias rg="rg --sort path"
|
||||||
|
|
||||||
# prompt and do verbose
|
# move stuff arround
|
||||||
alias \
|
alias \
|
||||||
cp='cp -iv' \
|
cp='cp -iv' \
|
||||||
mv='mv -iv' \
|
mv='mv -iv' \
|
||||||
rm='rm -iv' \
|
|
||||||
md='mkdir -pv';
|
md='mkdir -pv';
|
||||||
|
|
||||||
|
# delete stuff
|
||||||
|
alias \
|
||||||
|
rm='trash -i' \
|
||||||
|
rmf='rm -rfI'
|
||||||
|
|
||||||
# short long and common commands
|
# short long and common commands
|
||||||
alias \
|
alias \
|
||||||
mkexec='chmod +x';
|
mkexec='chmod +x';
|
||||||
|
|
@ -40,7 +44,11 @@ alias \
|
||||||
# Query Stuff
|
# Query Stuff
|
||||||
alias \
|
alias \
|
||||||
ip='ip -human -color -brief addr' \
|
ip='ip -human -color -brief addr' \
|
||||||
df='df -h'
|
df='df -h' \
|
||||||
|
du='dust --reverse' \
|
||||||
|
du1='dust --reverse --min-size 1M --depth 1' \
|
||||||
|
du2='dust --reverse --min-size 1M --depth 2' \
|
||||||
|
du3='dust --reverse --min-size 1M --depth 3' \
|
||||||
|
|
||||||
## Music Streams
|
## Music Streams
|
||||||
lofi_url="https://youtu.be/jfKfPfyJRdk"
|
lofi_url="https://youtu.be/jfKfPfyJRdk"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue