Skip to content

Commit 30abad8

Browse files
authored
Merge pull request #25 from yakimka/wayland_icon
Application icon for wayland session
2 parents e068383 + 9a21109 commit 30abad8

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,10 @@ jobs:
7676
run: >-
7777
python -m
7878
pip install
79-
build
79+
wheel
8080
--user
8181
- name: Build a binary wheel and a source tarball
82-
run: >-
83-
python -m
84-
build
85-
--sdist
86-
--wheel
87-
--outdir dist/
82+
run: python setup.py sdist bdist_wheel
8883
# - name: Publish distribution 📦 to Test PyPI
8984
# uses: pypa/gh-action-pypi-publish@release/v1
9085
# with:

CherryTomato/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
"""
2-
Easy to use, flexible PyQt5 Pomodoro Technique timer.
3-
"""
1+
"""Easy to use, flexible PyQt5 Pomodoro Technique timer."""
42

53
import os
64

CherryTomato/main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ def main():
5252

5353
app = Qt.QApplication(sys.argv)
5454

55+
# https://bugs.documentfoundation.org/show_bug.cgi?id=125934
56+
app.setDesktopFileName('cherrytomato.desktop')
57+
5558
settings = CherryTomatoSettings.createQT()
5659

5760
if not settings.useSystemFont:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
* Arch Linux
2727
* KDE5
28-
* Xorg X server
28+
* Xorg X server | Wayland session
2929
* FullHD Display
3030
* Python 3.7, 3.8, 3.9
3131

0 commit comments

Comments
 (0)