mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
10 lines
236 B
Bash
10 lines
236 B
Bash
#!/bin/bash
|
|
|
|
# Extracts the Windows startup sound WAV file from imageres.dll
|
|
# Takes in a path to imageres.dll
|
|
|
|
mkdir -p .tmp_atpres
|
|
7z x $1 -o.tmp_atpres
|
|
cp .tmp_atpres/.rsrc/WAVE/5080 session-start.wav
|
|
rm -rf .tmp_atpres
|
|
echo "Done."
|