mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
9 lines
105 B
Bash
Executable file
9 lines
105 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# distrohopper
|
|
# Choose gui or tui
|
|
if [ "$1" = "-t" ] ; then
|
|
quicktui
|
|
else
|
|
quickgui
|
|
fi
|