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 c6c67a633d
commit d0edf7c273
Signed by: y0rune
GPG Key ID: F204C385F57EB348
1 changed files with 6 additions and 0 deletions

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