Guest User

Untitled

a guest
Apr 21st, 2024
599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. How to Disable steam input without an external controller
  2.  
  3. Step 1 finding the nonsteam game appid
  4.  
  5. * Change the Controller options of the game at least once ( I usually just disable and enable back buttons)
  6.  
  7. * Go to /home/deck/.local/share/Steam/logs/console_log.txt
  8.  
  9. * Look for a line mentioning your game that looks like this: [2024-04-21 15:00:56] Loaded Config for Local Selection Path for App ID 3304069282, Controller 15: /home/deck/.local/share/Steam/steamapps/common/Steam Controller Configs/857822282/config/horizon forbidden west/controller_neptune.vdf
  10.  
  11. In this case, 3304069282 is the App ID
  12.  
  13. Step 2 shorten appid
  14.  
  15. * Open this website https://www.programiz.com/javascript/online-compiler/ then delete everything and paste this “console.log(YourAppId >> 32)” then press run and you should get the new appid
  16.  
  17. * In this case the appid would be "-990898014"
  18.  
  19. Step 3 add disable steam input to config file
  20.  
  21. * Close steam
  22.  
  23. * Go to /home/deck/.local/share/Steam/userdata/XXXXXXXXX/config/localconfig.vdf
  24.  
  25. * Add this to the bottom of the file before the last closing brackets:
  26.  
  27. "apps"
  28. {
  29. "YourShortenedAppID"
  30. {
  31. "UseSteamControllerConfig" "0"
  32. "SteamControllerRumble" "-1"
  33. "SteamControllerRumbleIntensity" "320"
  34. }
  35. }
  36.  
  37. * then save the file and you should now have disabled steam input. It should look like this in the file with the final close brackets:
  38.  
  39. "apps"
  40. {
  41. "-218182063"
  42. {
  43. "UseSteamControllerConfig" "0"
  44. "SteamControllerRumble" "-1"
  45. "SteamControllerRumbleIntensity" "320"
  46. }
  47. }
  48. }
  49.  
  50.  
  51.  
  52.  
  53. * If steam is left open it will overwrite the file on close
  54.  
  55. * If you have already disabled steam input on a game you’re going to need to find the “apps” section and add to it or if you want to add more games you’re going to need to do this. It should look something like this:
  56.  
  57. "apps"
  58. {
  59. "-218182063"
  60. {
  61. "UseSteamControllerConfig" "0"
  62. "SteamControllerRumble" "-1"
  63. "SteamControllerRumbleIntensity" "320"
  64. }
  65. "-990898014"
  66. {
  67. "UseSteamControllerConfig" "0"
  68. "SteamControllerRumble" "-1"
  69. "SteamControllerRumbleIntensity" "320"
  70. }
  71. }
Advertisement
Add Comment
Please, Sign In to add comment