Skip to content

Commit 0ea5a1e

Browse files
author
My Name
committed
more prep
1 parent 0f7686f commit 0ea5a1e

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

Diff for: README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ Originally created by Guilherme da Silveira as "Telly Spelly".
1717

1818
- `blaze/` - Core application code
1919
- `docs/` - Documentation files
20-
- `install.py` - Installation script
20+
- `install.py` - Installation script
2121
- `uninstall.py` - Uninstallation script
22-
- `setup.py` - Package setup for installation
23-
- `run-syllablaze.sh` - Script to run the application
24-
- `org.kde.syllablaze.desktop` - Desktop entry file
22+
2523

2624
## Installation
2725

@@ -66,7 +64,7 @@ Right-click tray icon → Settings to configure:
6664
python3 uninstall.py
6765
```
6866
or
69-
67+
7068
```bash
7169
pipx uninstall syllablaze
7270
```
File renamed without changes.

Diff for: install.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,8 @@ def install_desktop_integration():
256256
os.makedirs(app_dir, exist_ok=True)
257257
os.makedirs(icon_dir, exist_ok=True)
258258

259-
# Copy desktop file
260-
desktop_src = os.path.join(os.path.dirname(os.path.abspath(__file__)), "org.kde.syllablaze.desktop")
259+
# Copy desktop file from resources directory
260+
desktop_src = os.path.join(os.path.dirname(os.path.abspath(__file__)), "resources", "org.kde.syllablaze.desktop")
261261
desktop_dst = os.path.join(app_dir, "org.kde.syllablaze.desktop")
262262
shutil.copy2(desktop_src, desktop_dst)
263263

@@ -273,8 +273,8 @@ def install_desktop_integration():
273273
icon_app_dst = os.path.join(app_dir, "syllablaze.png")
274274
shutil.copy2(icon_src, icon_app_dst)
275275

276-
# Make run script executable
277-
run_script = os.path.join(os.path.dirname(os.path.abspath(__file__)), "run-syllablaze.sh")
276+
# Make run script executable (now in blaze/ directory)
277+
run_script = os.path.join(os.path.dirname(os.path.abspath(__file__)), "blaze", "run-syllablaze.sh")
278278
os.chmod(run_script, 0o755) # rwxr-xr-x
279279

280280
# Update desktop database
File renamed without changes.

0 commit comments

Comments
 (0)