Advertisement
MrVib3r

Untitled

Oct 6th, 2016
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.90 KB | None | 0 0
  1. ECHO OFF
  2. CLS
  3.  
  4. SETLOCAL EnableDelayedExpansion
  5. for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do     rem"') do (
  6.   set "DEL=%%a"
  7. )
  8.  
  9. :MENU
  10. ECHO ------------------------------------
  11. ECHO Type any number and then press ENTER
  12. ECHO ------------------------------------
  13. ECHO.
  14. ECHO            CURSOR COLOURS
  15. call :colorEcho 0a " 1 - Creamy colour with a glow"
  16. echo.
  17. call :colorEcho 0a " 2 - Default"
  18. echo.
  19. call :colorEcho 0a " 3 - Orange"
  20. echo.
  21. call :colorEcho 0a " 4 - Pink"
  22. echo.
  23. call :colorEcho 0a " 5 - Purple"
  24. echo.
  25. call :colorEcho 0a " 6 - Red"
  26. echo.
  27. call :colorEcho 0a " 7 - Remove cursor trail (Must reapply if colour is changed)"
  28. echo.
  29. echo            SLIDER FOLLOW CIRCLE SIZE
  30. call :colorEcho 0b " 8 - Default Slider Follow Circle"
  31. echo.
  32. call :colorEcho 0b " 9 - Small Slider Follow Circle"
  33. echo.
  34. echo            SOUND PACKS
  35. call :colorEcho 0e " 10 - Aesthetic"
  36. echo.
  37. call :colorEcho 0e " 11 - Cloudstepper"
  38. echo.
  39. call :colorEcho 0e " 12 - Default"
  40. echo.
  41. call :colorEcho 0e " 13 - Kamui"
  42. echo.
  43. call :colorEcho 0e " 14 - Muzikludo"
  44. echo.
  45. echo            NUMBERS ON CIRCLES
  46. call :colorEcho 0d " 15 - Yes numbers"
  47. echo.
  48. call :colorEcho 0d " 16 - No numbers"
  49. echo.
  50. echo.
  51.  
  52. SET /P M=:
  53. IF %M%==1 GOTO CREM
  54. IF %M%==2 GOTO CR_DEF
  55. IF %M%==3 GOTO ORNG
  56. IF %M%==4 GOTO PINK
  57. IF %M%==5 GOTO PRPL
  58. IF %M%==6 GOTO RED
  59. IF %M%==7 GOTO RM_TRL
  60. IF %M%==8 GOTO CIR_DEF
  61. IF %M%==9 GOTO SML
  62. IF %M%==10 GOTO ASTH
  63. IF %M%==11 GOTO CLDST
  64. IF %M%==12 GOTO SND_DEF
  65. IF %M%==13 GOTO KAMUI
  66. IF %M%==14 GOTO MUZI
  67. IF %M%==15 GOTO NUM_Y
  68. IF %M%==16 GOTO NUM_N
  69.  
  70. :CREM
  71. cd %~dp0\Customize
  72. call TEST.bat
  73. cls
  74. GOTO MENU
  75.  
  76. :CR_DEF
  77. cd %~dp0\Colours\
  78. start calc.exe
  79. cls
  80. GOTO MENU
  81.  
  82. :ORNG
  83. cd %windir%\system32\notepad.exe
  84. start notepad.exe
  85. cd %windir%\system32\calc.exe
  86. start calc.exe
  87. cls
  88. GOTO MENU
  89.  
  90. :colorEcho
  91. echo off
  92. <nul set /p ".=%DEL%" > "%~2"
  93. findstr /v /a:%1 /R "^$" "%~2" nul
  94. del "%~2" > nul 2>&1i
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement