Compare commits
10 commits
228844e6db
...
a46def3bc2
Author | SHA1 | Date | |
---|---|---|---|
a46def3bc2 | |||
25af4813b8 | |||
bd6417336d | |||
e72fa461f7 | |||
24d05bb540 | |||
bcbc232dd7 | |||
67a2501555 | |||
81a22aea96 | |||
e57023b16b | |||
8b43138aa7 |
2 changed files with 32 additions and 45 deletions
|
@ -1,56 +1,43 @@
|
||||||
|
#
|
||||||
|
# Aliases for ls
|
||||||
|
#
|
||||||
|
|
||||||
[ "$(uname -s | tr '[:upper:]' '[:lower:]')" = 'linux' ] && alias ls='ls --color=auto'
|
[ "$(uname -s | tr '[:upper:]' '[:lower:]')" = 'linux' ] && alias ls='ls --color=auto'
|
||||||
alias ll='ls -lihF'
|
alias ll='ls -lihF'
|
||||||
alias la='ls -A'
|
alias la='ls -A'
|
||||||
alias l='ll -A'
|
alias l='ll -A'
|
||||||
hash eza 2>/dev/null && alias ls='eza'
|
hash eza 2>/dev/null && alias ls='eza'
|
||||||
|
|
||||||
alias sudo='sudo '
|
|
||||||
alias grep='grep -n --color=auto'
|
#
|
||||||
alias j='jobs'
|
# Aliases for common commands
|
||||||
|
#
|
||||||
|
|
||||||
alias df='df -h'
|
alias df='df -h'
|
||||||
alias du='du -ch'
|
alias grep='grep -n --color=auto'
|
||||||
alias ip='ip --color'
|
alias ip='ip --color'
|
||||||
alias ipb='ip --color --brief'
|
alias ipb='ip --color --brief'
|
||||||
|
alias j='jobs'
|
||||||
alias mount_ro='mount -o ro,noexec,noatime,nodev,nosuid,noiversion'
|
alias mount_ro='mount -o ro,noexec,noatime,nodev,nosuid,noiversion'
|
||||||
alias ryzom_season_change='date --date $(wget -q -O - "https://api.ryzom.com/time.php?format=xml" | sed "s/></>\n</g" | /bin/grep -e "day_of_season" -e "time_of_day" | sed "s/<day_of_season>/\(89-/" | sed "s/<time_of_day>/\(23-/g" | sed "s/<\/day_of_season>/\)\*72/" | sed "s/<\/time_of_day>/\)\*3/" | bc | tr "\n" "+" | sed "s/\+$/\n\"min\"\n/" | bc | tr -d "\n")'
|
alias sudo='sudo '
|
||||||
hash tree 2>/dev/null && alias t='tree'
|
|
||||||
hash duf 2>/dev/null && alias du='duf'
|
|
||||||
hash htop 2>/dev/null && alias top='htop'
|
#
|
||||||
|
# Aliases for installed programs
|
||||||
|
#
|
||||||
|
|
||||||
hash clang-format 2>/dev/null && alias clang-format='clang-format -style="{BasedOnStyle: llvm, IndentWidth: 4, AllowShortFunctionsOnASingleLine: None, KeepEmptyLinesAtTheStartOfBlocks: false}"'
|
hash clang-format 2>/dev/null && alias clang-format='clang-format -style="{BasedOnStyle: llvm, IndentWidth: 4, AllowShortFunctionsOnASingleLine: None, KeepEmptyLinesAtTheStartOfBlocks: false}"'
|
||||||
hash xscreensaver-command 2>/dev/null && alias lock='xscreensaver-command --lock'
|
hash duf 2>/dev/null && alias du='duf'
|
||||||
hash sqlmap 2>/dev/null && alias sqlmap='sqlmap --user-agent="Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"'
|
hash helix 2>/dev/null && alias hx='helix'
|
||||||
hash sqlmap 2>/dev/null && alias sqlmap-tor='sqlmap --tor --tor-type=SOCKS5'
|
hash htop 2>/dev/null && alias top='htop'
|
||||||
hash jmtpfs 2>/dev/null && alias mount_android='jmtpfs "/media/android"'
|
|
||||||
hash kitty 2>/dev/null && alias kitty_ssh='kitty +kitten ssh'
|
hash kitty 2>/dev/null && alias kitty_ssh='kitty +kitten ssh'
|
||||||
hash nvim 2>/dev/null && alias vim='nvim'
|
hash nvim 2>/dev/null && alias vim='nvim'
|
||||||
hash helix 2>/dev/null && alias hx='helix'
|
hash tree 2>/dev/null && alias t='tree'
|
||||||
|
hash yt-dlp 2>/dev/null && alias audio-dl='yt-dlp --extract-audio --audio-quality 0 --audio-format "vorbis"'
|
||||||
|
|
||||||
if hash dig 2>/dev/null; then
|
if hash sqlmap 2>/dev/null; then
|
||||||
istheinternetonfire() {
|
alias sqlmap='sqlmap --user-agent="Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"'
|
||||||
txt=$(dig +short txt istheinternetonfire.com)
|
alias sqlmap-tor='sqlmap --tor --tor-type=SOCKS5'
|
||||||
if hash cowsay 2>/dev/null; then
|
|
||||||
echo "$txt" | cowsay
|
|
||||||
else
|
|
||||||
echo "$txt"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if hash yay 2>/dev/null; then
|
|
||||||
reinstall_pattern() {
|
|
||||||
PATTERN="$1"
|
|
||||||
yay -S $(pacman -Qm | /bin/grep "$PATTERN" | cut -d ' ' -f1)
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if hash gphoto2 2>/dev/null; then
|
|
||||||
if hash ffmpeg 2>/dev/null; then
|
|
||||||
if modinfo v4l2loopback >/dev/null 2>&1; then
|
|
||||||
webcam_dslr() {
|
|
||||||
gphoto2 --stdout --capture-movie | ffmpeg -i - -vcodec rawvideo -pix_fmt yuv420p -threads 0 -f v4l2 /dev/video0
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# https://github.com/OpenXRay/xray-16
|
# https://github.com/OpenXRay/xray-16
|
||||||
|
@ -60,9 +47,9 @@ if hash xr_3da 2>/dev/null; then
|
||||||
alias stalker_call_of_pripyat='xr_3da'
|
alias stalker_call_of_pripyat='xr_3da'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if hash yt-dlp 2>/dev/null; then
|
if hash yay 2>/dev/null; then
|
||||||
alias audio-dl='yt-dlp --extract-audio --audio-quality 0 --audio-format "vorbis"'
|
reinstall_pattern() {
|
||||||
alias youtube-dl='yt-dlp'
|
PATTERN="$1"
|
||||||
elif hash youtube-dl 2>/dev/null; then
|
yay -S $(pacman -Qm | /bin/grep "$PATTERN" | cut -d ' ' -f1)
|
||||||
alias audio-dl='youtube-dl -x --audio-quality 0 --audio-format "vorbis"'
|
}
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -17,7 +17,7 @@ pacman -S cargo-audit cargo-outdated cargo-release rustup
|
||||||
# Python
|
# Python
|
||||||
pacman -S python ruff uv
|
pacman -S python ruff uv
|
||||||
# CLI software
|
# CLI software
|
||||||
pacman -S dog exiv2 gnupg imagemagick mkcert ncdu nmap pass playerctl python-shodan python-weasyprint qrencode rsync shellcheck sqlmap ssh-audit yt-dlp
|
pacman -S dog exiv2 gnupg imagemagick mkcert ncdu nmap pass playerctl python-shodan python-weasyprint qrencode rsync shellcheck sqlmap ssh-audit xsv yt-dlp
|
||||||
# Hyprland
|
# Hyprland
|
||||||
pacman -S hyprland xdg-desktop-portal-hyprland wofi qt5-wayland qt6-wayland
|
pacman -S hyprland xdg-desktop-portal-hyprland wofi qt5-wayland qt6-wayland
|
||||||
pacman -S pipewire wireplumber pipewire-audio pipewire-alsa pipewire-pulse pipewire-jack pipewire-x11-bell
|
pacman -S pipewire wireplumber pipewire-audio pipewire-alsa pipewire-pulse pipewire-jack pipewire-x11-bell
|
||||||
|
|
Loading…
Add table
Reference in a new issue