summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/tl-tray-menu-custom.bat
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/installer/tl-tray-menu-custom.bat')
-rwxr-xr-xMaster/tlpkg/installer/tl-tray-menu-custom.bat54
1 files changed, 0 insertions, 54 deletions
diff --git a/Master/tlpkg/installer/tl-tray-menu-custom.bat b/Master/tlpkg/installer/tl-tray-menu-custom.bat
deleted file mode 100755
index a44bfdb3e30..00000000000
--- a/Master/tlpkg/installer/tl-tray-menu-custom.bat
+++ /dev/null
@@ -1,54 +0,0 @@
-@ECHO OFF
-
-rem Sample custom submenu for the tray menu
-rem Usage: edit and copy to the root of the installation.
-
-rem For a batch-mode main menu, see tlmenu.bat.
-
-rem Note. The system tray menu has already taken care of the searchpath.
-
-SETLOCAL ENABLEEXTENSIONS
-SETLOCAL ENABLEDELAYEDEXPANSION
-
-set tlroot=%~dp0
-
-:menuloop
-
-set ans=
-cls
-
-echo === TeX Live Menu ===
-echo.
-echo 1 TexMakerX
-echo 2 Emacs
-echo 3 Notepad
-
-echo Q Quit
-echo.
-set /p ans="Make a choice: "
-
-if "%ans%"=="1" (
- %tlroot%texmakerx\texmakerx.exe
- exit
-)
-
-if "%ans%"=="2" (
- rem load emacs with the included initialization file _emacs
- %tlroot%emacs\bin\emacs.exe -q -l %tlroot%emacs\_emacs
- exit
-)
-
-if "%ans%"=="3" (
- %windir%\notepad.exe
- exit
-)
-
-if "%ans%"=="Q" (
- exit
-)
-
-if "%ans%"=="q" (
- exit
-)
-
-goto :menuloop