aboutsummaryrefslogtreecommitdiff
path: root/wmenu/app.bat
diff options
context:
space:
mode:
Diffstat (limited to 'wmenu/app.bat')
-rw-r--r--wmenu/app.bat16
1 files changed, 16 insertions, 0 deletions
diff --git a/wmenu/app.bat b/wmenu/app.bat
new file mode 100644
index 0000000..86bb161
--- /dev/null
+++ b/wmenu/app.bat
@@ -0,0 +1,16 @@
+@echo off
+start /B wmenu.exe -elements "notepad;explorer;paint;" | more > %temp%/apps.txt
+
+for /f "tokens=*" %%s in (%temp%\apps.txt) do (
+ IF "%%s"=="notepad" (
+ start notepad
+ ) ELSE IF "%%s"=="explorer" (
+ start %%s
+ ) ELSE IF "%%s"=="paint" (
+ start mspaint
+ ) ELSE (
+ REM default case...
+ )
+)
+
+del "%temp%\apps.txt" \ No newline at end of file