Added the script for getting starting a winbox

This commit is contained in:
Marcin Woźniak 2023-01-28 00:11:52 +01:00
parent 415641509c
commit cbd759f5c5

6
.local/bin/WinBox Executable file
View File

@ -0,0 +1,6 @@
#/bin/bash
function main(){
wineapp=$(readlink -f $(whereis wine))
wineapp ~/Applications/Winbox.exe
}
main