├── .gitignore ├── LICENSE ├── README.md ├── change_duration.desktop ├── random_every_boot.desktop ├── randomizer.desktop ├── restore.desktop ├── uninstall_every_boot.desktop ├── vidswap.desktop └── vidswap ├── backup ├── 20220817.1_3.3.1 │ ├── deck_startup.webm │ ├── library.css │ └── library.js └── 20221005.1_3.3.2 │ ├── deck_startup.webm │ ├── library.css │ └── library.js ├── change_duration.sh ├── random_service_install.sh ├── random_service_uninstall.sh ├── randomizer.sh ├── randomvid.service_template ├── restore.sh ├── vids ├── BetterCallSaul.webm ├── BreakingBad.webm ├── CowboyBebop.webm ├── Frasier.webm ├── Futurama.webm ├── HandheldHistory.webm ├── NeoGeo.webm ├── PipBoy.webm ├── RickMorty.webm ├── Seinfeld.webm ├── StarWars.webm ├── TheCritic.webm ├── WarGames.webm └── office.webm ├── vidswap.sh └── vidswap_core.sh /.gitignore: -------------------------------------------------------------------------------- 1 | randomvid.service 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/README.md -------------------------------------------------------------------------------- /change_duration.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/change_duration.desktop -------------------------------------------------------------------------------- /random_every_boot.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/random_every_boot.desktop -------------------------------------------------------------------------------- /randomizer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/randomizer.desktop -------------------------------------------------------------------------------- /restore.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/restore.desktop -------------------------------------------------------------------------------- /uninstall_every_boot.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/uninstall_every_boot.desktop -------------------------------------------------------------------------------- /vidswap.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap.desktop -------------------------------------------------------------------------------- /vidswap/backup/20220817.1_3.3.1/deck_startup.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/backup/20220817.1_3.3.1/deck_startup.webm -------------------------------------------------------------------------------- /vidswap/backup/20220817.1_3.3.1/library.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/backup/20220817.1_3.3.1/library.css -------------------------------------------------------------------------------- /vidswap/backup/20220817.1_3.3.1/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/backup/20220817.1_3.3.1/library.js -------------------------------------------------------------------------------- /vidswap/backup/20221005.1_3.3.2/deck_startup.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/backup/20221005.1_3.3.2/deck_startup.webm -------------------------------------------------------------------------------- /vidswap/backup/20221005.1_3.3.2/library.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/backup/20221005.1_3.3.2/library.css -------------------------------------------------------------------------------- /vidswap/backup/20221005.1_3.3.2/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/backup/20221005.1_3.3.2/library.js -------------------------------------------------------------------------------- /vidswap/change_duration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/change_duration.sh -------------------------------------------------------------------------------- /vidswap/random_service_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/random_service_install.sh -------------------------------------------------------------------------------- /vidswap/random_service_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/random_service_uninstall.sh -------------------------------------------------------------------------------- /vidswap/randomizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/randomizer.sh -------------------------------------------------------------------------------- /vidswap/randomvid.service_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/randomvid.service_template -------------------------------------------------------------------------------- /vidswap/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/restore.sh -------------------------------------------------------------------------------- /vidswap/vids/BetterCallSaul.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/BetterCallSaul.webm -------------------------------------------------------------------------------- /vidswap/vids/BreakingBad.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/BreakingBad.webm -------------------------------------------------------------------------------- /vidswap/vids/CowboyBebop.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/CowboyBebop.webm -------------------------------------------------------------------------------- /vidswap/vids/Frasier.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/Frasier.webm -------------------------------------------------------------------------------- /vidswap/vids/Futurama.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/Futurama.webm -------------------------------------------------------------------------------- /vidswap/vids/HandheldHistory.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/HandheldHistory.webm -------------------------------------------------------------------------------- /vidswap/vids/NeoGeo.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/NeoGeo.webm -------------------------------------------------------------------------------- /vidswap/vids/PipBoy.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/PipBoy.webm -------------------------------------------------------------------------------- /vidswap/vids/RickMorty.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/RickMorty.webm -------------------------------------------------------------------------------- /vidswap/vids/Seinfeld.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/Seinfeld.webm -------------------------------------------------------------------------------- /vidswap/vids/StarWars.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/StarWars.webm -------------------------------------------------------------------------------- /vidswap/vids/TheCritic.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/TheCritic.webm -------------------------------------------------------------------------------- /vidswap/vids/WarGames.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/WarGames.webm -------------------------------------------------------------------------------- /vidswap/vids/office.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vids/office.webm -------------------------------------------------------------------------------- /vidswap/vidswap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vidswap.sh -------------------------------------------------------------------------------- /vidswap/vidswap_core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoMcG/steamdeck_tools/HEAD/vidswap/vidswap_core.sh --------------------------------------------------------------------------------