11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if not_installed "screenfetch"; then
|
|
echo "Installing screenfetch..."
|
|
install screenfetch
|
|
fi
|
|
|
|
echo "screenfetch is installed"
|
|
screenfetch --version
|
|
screenfetch
|