From 470f7ef68c08133d823813645b235e1351adff49 Mon Sep 17 00:00:00 2001 From: Salt Date: Fri, 18 Aug 2017 14:57:24 -0500 Subject: [PATCH] .profile: Add lsblk aliases --- .profile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.profile b/.profile index 678e9803..fe16e101 100755 --- a/.profile +++ b/.profile @@ -41,6 +41,13 @@ if [ `which emerge` ]; then alias e-sync='sudo emerge --sync' fi +# Add an alias for lsblk, since I tend to use that +if [ `which lsblk` ]; then + alias lsblk='lsblk -p' + alias lsblkf='lsblk -pf' +fi + +# Add neofetch aliases if we have that if [ `which neofetch` ]; then alias fetch='neofetch --disable model resolution --block_range 0 15 --image wall --xoffset 4 --yoffset 4 --scrot ~/Pictures/Screenshots/neofetch.png' alias fetch-up='neofetch --disable model resolution --block_range 0 15 --image wall --xoffset 4 --yoffset 4 --upload --image-host imgur'