Dream Sounds: Harmony 2 sound theme for KDE Plasma
Go to file
Gianmarco Gargiulo a0c899cd26 Corrected some broken symlinks 2024-03-05 09:57:58 +01:00
samples Initial commit 2024-03-04 13:24:29 +01:00
stereo Corrected some broken symlinks 2024-03-05 09:57:58 +01:00
.gitignore Added a .gitignore and removed some useless hidden files 2024-03-04 13:34:08 +01:00
LICENSE Initial commit 2024-03-04 13:24:29 +01:00
README.md Updated the README to talk about the .local/share/sounds directory 2024-03-04 16:01:40 +01:00
cover.svg Initial commit 2024-03-04 13:24:29 +01:00
harmony2.mmpz Initial commit 2024-03-04 13:24:29 +01:00
index.theme Initial commit 2024-03-04 13:24:29 +01:00

README.md

Dream Sounds: Harmony 2

Sound theme for KDE Plasma 6

Installation

Pling/KDE Store

Get the theme from here or look it up in a KGetNewStuff interface.

This repo

  1. Download a package from the releases or clone the repository;
  2. Copy the stereo folder and the index.theme file in /usr/share/sounds/harmony2 or ~/.local/share/sounds/harmony2;
  3. Set the theme in your System Settings under the "Sound theme" section.

Exporting

To export all the sounds from LMMS:

  1. Make sure the various tracks (each corresponding to one sound) you want to export are enabled (their green light on the left must be on);
  2. Go to File > Export Tracks... and choose a directory to export the sounds in;
  3. In the encoding settings choose "Compressed OGG-File (*.ogg)" as the file format, 48000 Hz as the samplerate and 320 KBit/s as the bitrate in order to match the official sounds;
  4. Click "Start" and wait for the process to finish.

One annoying thing is that LMMS always exports the tracks with a number prefix in front of every file name, to solve this I found a simple Bash routine to rename all the files and get rid of the prefix:

for fp in ./*_*; do
  mv "$fp" "${fp#*_}"
done

🄯 2024 Gianmarco Gargiulo - CC BY-SA 4.0 International (check the LICENSE file)