From bash to zsh and everywhere in between, show me yours and I’ll show you mines. Inspire others or get some feedback.
Simply copy & paste the output of alias in your terminal or add some comments to explain things for others.
Edit: Kbin users, click ‘More’ on a comment and use the fediverse link to read responses that have funky formatting
alias ls='ls --time-style=long-iso' alias la='ls -alh' alias ncdu='ncdu --color=off' alias wttr='curl wttr.in/?T0' alias vim='vimx' alias ipinfo='curl ipinfo.io --no-progress-meter | jq "del(.readme)"' alias pp="pkill -SIGSTOP -f " alias pc="pkill -SIGCONT -f "
what is vimx just wondering ?
Seems to be just normal vim, maybe some distros packages the binary (of vim with more options enabled at compile time) as vimx so that it doesn’t conflict with another vim package (as an example vim-tiny). https://www.systutorials.com/docs/linux/man/1-vimx/
But only @aram@garam@lemmy.my.id, can answer that for us.
vimx support X/Wayland copy paste, using "+y or "+p
Like GVim, but on terminal… haha…
Hehe pp
pp = process pause = pkill -f SIGSTOP
I hate when Win10 idle/pause on KVM/QEMU still taking much CPU, and the only way to stop it using pp/pkill…
https://blog.benyamin.xyz/2023/03/11/stop-windows-vm-cpu-usage-while-paused-on-qemu-linux/