6 lines
78 B
Bash
6 lines
78 B
Bash
#!/usr/bin/env bash
|
|
status=$?
|
|
if [ "${status}" -eq 0 ]; then
|
|
fastfetch
|
|
fi
|