Skip to content

Commit 4320408

Browse files
Merge pull request #72 from guruswarupa/main
bashrc fastfetch path dynamic.
2 parents 90fb0da + a5ab840 commit 4320408

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.bashrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ iatest=$(expr index "$-" i)
44
#######################################################
55
# SOURCED ALIASES AND SCRIPTS BY zachbrowne.me
66
#######################################################
7-
if [ -f /usr/bin/fastfetch ]; then
8-
fastfetch
7+
if command -v fastfetch 2>/dev/null; then
8+
fastfetch
99
fi
1010

1111
# Source global definitions

0 commit comments

Comments
 (0)