Set dice app icon from Papirus theme

Replaces the generic Qt placeholder W icon in the titlebar with the
Papirus gDiceRoller icon.
This commit is contained in:
2026-04-02 06:28:46 -04:00
parent db56be8bef
commit 02f561b3ac

View File

@@ -10,7 +10,7 @@ if os.environ.get("WAYLAND_DISPLAY"):
os.environ.setdefault("QT_QPA_PLATFORM", "wayland")
from PyQt6.QtWidgets import QApplication, QMainWindow, QWidget, QVBoxLayout, QHBoxLayout, QPushButton, QLabel
from PyQt6.QtCore import Qt, QThread, pyqtSignal
from PyQt6.QtGui import QPixmap, QFont
from PyQt6.QtGui import QPixmap, QFont, QIcon
VERSION = "v0.1.0"
@@ -224,6 +224,7 @@ class SteamDice(QMainWindow):
if __name__ == "__main__":
app = QApplication(sys.argv)
app.setWindowIcon(QIcon.fromTheme("codes.nora.gDiceRoller"))
win = SteamDice()
win.show()
sys.exit(app.exec())