Skip to content

Commit a9fd86b

Browse files
1.0.0.0
1 parent 16250f0 commit a9fd86b

File tree

3 files changed

+49
-2
lines changed

3 files changed

+49
-2
lines changed

Settings/Settings.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ Call %MYFILES%\Custom-Settings.bat
2828
GOTO end
2929

3030
:end
31-
Exit
31+
exit

Settings/Steam-Settings.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ ECHO|set /p=%result%>CLOSED.LOCATION
6666
goto Start
6767

6868
:Set-Shell
69-
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /d "C:\Motion-Shell\Steam\Motion-Shell.exe" /f
69+
call %MYFILES%\set-Shell.bat
7070
goto Start
7171

7272

Settings/set-Shell.bat

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
@ECHO OFF
2+
set /p CURRENT=<CURRENT.OPTION
3+
ECHO The shell is currently set to %CURRENT%
4+
ECHO.
5+
ECHO Please select which module you would like to set as the shell, if you have not installed the module using the original installer and selecting the modile please do that first, each module installed using the installer will be set and can later be switched between different modules using this option.
6+
ECHO.
7+
ECHO.
8+
ECHO 1. Steam
9+
ECHO 2. Playnite Splash
10+
ECHO 3. Playnite
11+
ECHO 4. Custom
12+
ECHO 5. Exit
13+
14+
set /p op=Please select:
15+
if "%op%"=="1" goto Steam
16+
if "%op%"=="2" goto Playnite-Splash
17+
if "%op%"=="3" goto Playnite
18+
if "%op%"=="4" goto Custom
19+
if "%op%"=="5" goto end
20+
21+
22+
:Steam
23+
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /d "C:\Motion-Shell\Steam\Motion-Shell.exe" /f
24+
set /p CURRENT=Steam
25+
ECHO|set /p=%CURRENT%>CURRENT.OPTION
26+
goto end
27+
28+
:Playnite-Splash
29+
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /d "C:\Motion-Shell\Playnite\Motion-Shell.exe" /f
30+
set /p CURRENT=Playnite-Splash
31+
ECHO|set /p=%CURRENT%>CURRENT.OPTION
32+
goto end
33+
34+
:Playnite
35+
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /d "C:\Motion-Shell\Playnite\Motion-Shell.exe" /f
36+
set /p CURRENT=Playnite
37+
ECHO|set /p=%CURRENT%>CURRENT.OPTION
38+
goto end
39+
40+
:Custom
41+
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /d "C:\Motion-Shell\Custom\Motion-Shell.exe" /f
42+
set /p CURRENT=Custom
43+
ECHO|set /p=%CURRENT%>CURRENT.OPTION
44+
goto end
45+
46+
:end
47+
Exit

0 commit comments

Comments
 (0)