Various scripts that I maintain
utils scripts

Update README.md

Signed-off-by: Shiloh Fen <shiloh@shilohfen.com>

matrixfurry.com 615b4631 0e467936

verified
+23 -25
+23 -25
README.md
··· 3 3 4 4 Various scripts that I maintain. 5 5 6 - # LyricFetch 6 + # steam-disable-update 7 + Completely disable steam updates for a game or app. 8 + 9 + Usage: `steam-disable-update <appid>` 10 + Allow updates: `steam-disable-update --revert <appid>` 11 + 12 + Caveats to this approach: 13 + - Your "last played" time will never update 14 + - I haven't used it in a long time, so I can't guarantee it will work 15 + - It might cause other bugs, I haven't tested it extensively 16 + 17 + # lyricfetch 18 + 19 + > NOTE: I reccomend using a [lrclib](https://lrclib.net/) client such as [lrcget](https://github.com/tranxuanthang/lrcget) or [Chronograph](https://flathub.org/apps/io.github.dzheremi2.lrcmake-gtk) instead! 7 20 8 21 Fetches lyrics from Genius using a [Dumb](https://github.com/rramiachraf/dumb) instance, and adds them to your music library's metadata. 9 22 10 - Currently only supports FLAC files. In the future, timesynced lyrics may be supported. 23 + Currently only supports FLAC files. 11 24 12 - # ADB Auto Connect 25 + # adb-auto-connect 13 26 Automatically find and connect to an Android device with Wireless Debugging over the local network. 14 27 15 28 You'll need to create a file at `~/.config/adb-auto-connect.nuon` with the MAC Addresses you want to search for. For example: ··· 20 33 ] 21 34 ``` 22 35 23 - # Auto Benchmark 36 + # lh-pairall 37 + Uses lighthouse_console to reset all SteamVR dongles, then put them all into pairing mode. 38 + 39 + # auto-benchmark 24 40 Set up and run a Blender benchmark on the specified device, then automatically 25 41 compare your results to the results on [Blender Open Data](https://opendata.blender.org/). 26 42 ··· 36 52 # oscavmgr-launch 37 53 Slightly modified version of Galister's oscavmgr start script. Launches oscavmgr and VrcAdvert together. 38 54 39 - # GNOME extension toggle 55 + # toggle-extension 40 56 Provides an easy way to toggle a GNOME extension. Useful for setting up keyboard shortcuts. 41 57 42 - # Start Service if Needed 58 + # start-service-if-neeeded 43 59 Starts a systemd service if it is not already started, otherwise do nothing. 44 60 Useful if you only want to ask for the password when the service actually needs 45 61 to be started. 46 62 47 - # kernel-blu checker 48 - 63 + # notify-kernel-blu 49 64 Notifies you if you're not using [kernel-blu](https://copr.fedorainfracloud.org/coprs/sentry/kernel-blu). 50 65 Useful if you have multiple kernels installed. 51 66 52 - # lh-pairall 53 - 54 - Uses lighthouse_console to reset all SteamVR dongles, then put them all into pairing mode. 55 - 56 67 # relink 57 - 58 68 Update symlink targets from an old target directory to a new one 59 69 60 70 Example: If you moved all files in `~/Development/tools` to `~/Applications`, you can update all 61 71 symlinks in `~/.local/bin` that point to the old location with 62 72 `relink ~/.local/bin ~/Development/tools ~/Applications` 63 - 64 - # Steam: Disable Update 65 - 66 - Completely disable steam updates for a game or app. 67 - 68 - Usage: `steam-disable-update <appid>` 69 - Allow updates: `steam-disable-update --revert <appid>` 70 - 71 - Caveats to this approach: 72 - - Your "last played" time will never update 73 - - I haven't used it in a long time, so I can't guarantee it will work 74 - - It might cause other bugs, I haven't tested it extensively