Advertisement
Luticus

Skyrim with Mod Organizer 2 on Steam Deck

Feb 12th, 2023
3,038
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.67 KB | Gaming | 0 0
  1. ## Install Mod Organizer 2 with Skyrim SE/AE on Steam Deck:
  2. # to understand how all this works, be sure to check out my video on youtube:
  3. # https://youtu.be/dPguPMbAJEc
  4.  
  5. # be sure to update the paths and locations according to your own situation, this is just a template.
  6. # commands that should be run from the terminal will be prefixed with # -- command:
  7. # Files you should create will have # --- /path/to/file/location
  8. # all files and commands should be created/run as the normal (deck) user, none of these tasks require root access.
  9.  
  10.  
  11. # -- Command: start installation
  12. # remember to update for the location of the installer you downloaded!
  13. STEAM_COMPAT_CLIENT_INSTALL_PATH=/usr/bin/steam STEAM_COMPAT_DATA_PATH=/home/deck/.steam/steam/steamapps/compatdata/489830 "/home/deck/.steam/steam/steamapps/common/Proton 7.0/proton" run "/run/media/mmcblk0p1/Mod Organizer 2-6194-2-4-4-1640622655.exe"
  14.  
  15.  
  16. # --- /home/deck/.local/bin/nxmhandler
  17. #!/bin/bash
  18. STEAM_COMPAT_CLIENT_INSTALL_PATH=/usr/bin/steam STEAM_COMPAT_DATA_PATH='/home/deck/.steam/steam/steamapps/compatdata/489830' '/home/deck/.steam/steam/steamapps/common/Proton 7.0/proton' run '/home/deck/.steam/steam/steamapps/compatdata/489830/pfx/drive_c/Modding/MO2/nxmhandler.exe' "$1"
  19.  
  20.  
  21. # --- /home/deck/.local/bin/mo2
  22. #!/bin/bash
  23. STEAM_COMPAT_CLIENT_INSTALL_PATH=/usr/bin/steam STEAM_COMPAT_DATA_PATH='/home/deck/.steam/steam/steamapps/compatdata/489830' '/home/deck/.steam/steam/steamapps/common/Proton 7.0/proton' run '/home/deck/.steam/steam/steamapps/compatdata/489830/pfx/drive_c/Modding/MO2/ModOrganizer.exe' "/run/media/mmcblk0p1/steamapps/common/Skyrim Special Edition/skse64_loader.exe"
  24.  
  25.  
  26. # --- /home/deck/.local/share/applications/nxmhandler.desktop
  27. [Desktop Entry]
  28. Name=nxmhandler
  29. Exec=/home/deck/.local/bin/nxmhandler %u
  30. Icon=/home/deck/.local/share/icons/custom/nxm.png
  31. MimeType=x-scheme-handler/nxm
  32. Terminal=False
  33. Type=Application
  34. Categories=Game;
  35. StartupNotify=false
  36.  
  37.  
  38. # --- /home/deck/.local/share/applications/Mod Organizer 2.desktop
  39. Desktop Entry]
  40. Comment=
  41. Exec=STEAM_COMPAT_CLIENT_INSTALL_PATH=/usr/bin/steam STEAM_COMPAT_DATA_PATH="/home/deck/.steam/steam/steamapps/compatdata/489830" "/home/deck/.steam/steam/steamapps/common/Proton 7.0/proton" run "/home/deck/.steam/steam/steamapps/compatdata/489830/pfx/drive_c/Modding/MO2/ModOrganizer.exe"
  42. GenericName=Nexus mod manager
  43. Icon=/home/deck/.local/share/icons/custom/nxm.png
  44. Name=Mod Organizer 2
  45. NoDisplay=false
  46. Path=
  47. StartupNotify=true
  48. Terminal=false
  49. TerminalOptions=
  50. Type=Application
  51. X-KDE-SubstituteUID=false
  52. X-KDE-Username=
  53.  
  54.  
  55. # -- Command: Register nxmhandler as the protocol handler for nxm urls
  56. xdg-mime default nxmhandler.desktop x-scheme-handler/nxm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement