diff --git a/README.md b/README.md index f24f445..d95890a 100644 --- a/README.md +++ b/README.md @@ -58,12 +58,12 @@ config.ini db/ - ~~playlists~~ - ~~delete songs from library (del key || right-click delete)~~ - playlist autoexporting -- fix table headers being resized and going out window bounds - .wav, .ogg, .flac convertor +- FIXME: table headers being resized and going out window bounds - FIXME: dbaccess is instantiated for every track being reorganized - automatic "radio" based on artist or genre - search bar, full text search on song, artist, album - when table is focused, start typing to match against the primary sort column -- improve audio visualizer - see Renoise +- improve audio visualizer - logarithmic x-axis ISO octave bands - see Renoise - "installer" - put files in /opt? script to install and uninstall... eh - .deb package? diff --git a/create_ui.sh b/create_ui.sh index d5a89f3..bc134c3 100755 --- a/create_ui.sh +++ b/create_ui.sh @@ -1 +1,2 @@ +#!/bin/bash pyuic5 ui.ui -o ui.py diff --git a/main.py b/main.py index c66d79a..4b814c3 100644 --- a/main.py +++ b/main.py @@ -620,6 +620,7 @@ if __name__ == "__main__": clipboard = app.clipboard() # Dark theme >:3 qdarktheme.setup_theme() + # qdarktheme.setup_theme("auto") # Show the UI ui = ApplicationWindow(clipboard) ui.show()