Skip to content

Instantly share code, notes, and snippets.

View rikkaneko's full-sized avatar
🎯
Focusing

りっか rikkaneko

🎯
Focusing
View GitHub Profile
@michaelbutler
michaelbutler / Steam_Proton_Exe.md
Last active April 23, 2025 15:57
How to run another .exe in an existing proton wine prefix

Running games through Steam's Proton is great. But what if there is a secondary exe or configuration application bundled with the game? How can you launch it if Steam itself only launches the game?

Simply run this command in a terminal:

cd /path/to/steam/steamapps/compatdata/20920/pfx

STEAM_COMPAT_DATA_PATH="/path/to/steam/steamapps/compatdata/20920" WINEPREFIX=$PWD \
    "$HOME/.steam/root/steamapps/common/Proton 5.0/proton" run ./drive_c/path/to/custom_application.exe
@tVienonen
tVienonen / Bluetooth LE Dual Boot Connecting guide.md
Created February 23, 2020 17:24
Guide for pairing and connecting Bluetooth LE devices when using Linux and Windows dual boot

Bluetooth LE Dual Boot Connecting guide

  1. Pair and connect on Linux
  2. Pair and connect on Windows
  3. Shut down Bluetooth device
  4. Boot to Linux
  5. Mount Windows partition
  6. Go to <windows-mount>/Windows/System32/config
  7. Run command chntpw -e SYSTEM
  • Install chntpw if it is not available
@daper
daper / backup.sh
Created November 18, 2018 19:15
Shell Only S3 Upload Script with Multipart support. Requirements: openssl, curl. Optional: gnu-parallel.
#!/bin/sh
# Author: daper <[email protected]>
# Description: Shell Only S3 Upload Script with Multipart support.
# Requirements: openssl curl
# Optional: gnu-parallel
# Full path to this script.
# This is needed when using gnu-parallel.
# Please set-up manually.
SCRIPT="$(pwd)/backup.sh"