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