mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
launcher: add sort by alphabetically option
sounds: convert files to wav
This commit is contained in:
BIN
assets/sounds/freedesktop/audio-volume-change.wav
Normal file
BIN
assets/sounds/freedesktop/audio-volume-change.wav
Normal file
Binary file not shown.
BIN
assets/sounds/freedesktop/message-new-instant.wav
Normal file
BIN
assets/sounds/freedesktop/message-new-instant.wav
Normal file
Binary file not shown.
BIN
assets/sounds/freedesktop/message.wav
Normal file
BIN
assets/sounds/freedesktop/message.wav
Normal file
Binary file not shown.
BIN
assets/sounds/plasma/power-plug.wav
Normal file
BIN
assets/sounds/plasma/power-plug.wav
Normal file
Binary file not shown.
BIN
assets/sounds/plasma/power-unplug.wav
Normal file
BIN
assets/sounds/plasma/power-unplug.wav
Normal file
Binary file not shown.
21
assets/sounds/wavconvert.sh
Executable file
21
assets/sounds/wavconvert.sh
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Convert freedesktop sounds
|
||||
cd freedesktop
|
||||
for file in *.oga; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Converting $file to WAV..."
|
||||
ffmpeg -i "$file" -acodec pcm_s16le -ar 44100 -ac 2 "${file%.oga}.wav"
|
||||
fi
|
||||
done
|
||||
|
||||
# Convert plasma sounds
|
||||
cd ../plasma
|
||||
for file in *.ogg; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Converting $file to WAV..."
|
||||
ffmpeg -i "$file" -acodec pcm_s16le -ar 44100 -ac 2 "${file%.ogg}.wav"
|
||||
fi
|
||||
done
|
||||
|
||||
echo "Conversion complete!"
|
||||
Reference in New Issue
Block a user