Skip to content

Commit eb40a12

Browse files
committed
Minor improvements
1 parent a9bde64 commit eb40a12

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ NOTE: It can happen that a backup file will not be created, in that case, just a
6363
- ~/.config/gtk-4.0
6464
- ~/.config/gtk-3.0
6565
- ~/.var/app
66+
- ~/.local/share/flatpak/app
6667
- /var/lib/flatpak/app
6768
```
6869
- **GNOME**
@@ -120,6 +121,7 @@ NOTE: It can happen that a backup file will not be created, in that case, just a
120121
- ~/.config/spectaclerc
121122
- ~/.config/plasmarc
122123
- ~/.config/plasma-org.kde.plasma.desktop-appletsrc
124+
- ~/.local/share/[k]* (all directories and files beginning with k)
123125
- ~/.local/share/konsole
124126
- ~/.local/share/dolphin
125127
- ~/.local/share/sddm
@@ -149,7 +151,7 @@ NOTE: It can happen that a backup file will not be created, in that case, just a
149151
If you want to help localize SaveDesktop, you can use the Weblate tool (it is possible to register with, e.g., GitHub or Google).
150152
| <h4>SaveDesktop application</h4> (click on widget below) | <h4>SaveDesktop Github wiki</h4> (click on widget below) |
151153
| --- | --- |
152-
| <a href="https://hosted.weblate.org/projects/vikdevelop/savedesktop/"><img src="https://hosted.weblate.org/widget/vikdevelop/savedesktop/287x66-grey.png" alt="Stav překladu" /></a> | <a href="https://hosted.weblate.org/projects/vikdevelop/savedesktop-github-wiki/"><img src="https://hosted.weblate.org/widget/vikdevelop/savedesktop-github-wiki/287x66-grey.png" alt="Stav překladu" title="For the language to be added to the Github Wiki, it should have translated at least seven of the 12 strings." /></a> |
154+
| <a href="https://hosted.weblate.org/projects/vikdevelop/savedesktop/"><img src="https://hosted.weblate.org/widget/vikdevelop/savedesktop/287x66-grey.png" alt="Stav překladu" /></a> | <a href="https://hosted.weblate.org/projects/vikdevelop/savedesktop-github-wiki/"><img src="https://hosted.weblate.org/widget/vikdevelop/savedesktop-github-wiki/287x66-grey.png" alt="Stav překladu" /></a> |
153155

154156
### Reporting issues
155157
You can report an issue on GitHub, or if you are not registered on GitHub, you can use this [web page](https://vikdevelop.github.io/SaveDesktop/open-issue/). You can also use [Github Discussions](https://github.com/vikdevelop/SaveDesktop/discussions).
@@ -194,7 +196,7 @@ To install the SaveDesktop Beta, run the following command:
194196
snap install savedesktop --beta
195197
```
196198
#### 3. Flatpak Builder
197-
Before building this app using Flatpak Builder, ensure if you have installed org.gnome.Sdk runtime. If not, use this command: `flatpak install org.gnome.Sdk//47`
199+
Before building this app using Flatpak Builder, ensure if you have installed org.gnome.Sdk runtime. If not, use this command: `flatpak install org.gnome.Sdk//48`
198200

199201
Then, you can continue in building this app using Flatpak Builder by entering this command:
200202

src/config.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def __init__(self):
308308
(Path(f"{home}/.config/[k]*"), Path("./xdg-config/[k]*"), True),
309309
],
310310
DesktopEnvironment.DEEPIN: [
311-
(Path(f"{home}/.local/share/deepin"), Path("./deepin"), True),
311+
(Path(f"{home}/.local/share/deepin"), Path("./deepin-data"), True),
312312
(Path(f"{home}/.config/deepin"), Path("./deepin"), True),
313313
],
314314
DesktopEnvironment.HYPRLAND: [
@@ -347,6 +347,8 @@ def __init__(self):
347347
desktop_env_config.extend([
348348
(Path(f"{home}/.local/share/plasma"), Path("./xdg-data/plasma"), True),
349349
])
350+
351+
self.config_files.append(desktop_env_config)
350352

351353
@abstractmethod
352354
def setup(self) -> None:
@@ -677,6 +679,7 @@ def run(self, max_workers: Optional[int] = None):
677679
def teardown(self) -> None:
678680
pass
679681

682+
680683
if args.save:
681684
Save().run()
682685
elif args.import_:

translations/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,5 @@
9999
"unsuppurted_env_desc": "<big><b>You have an unsupported environment installed.</b></big> \nPlease use one of these environments: {}.",
100100
"summary": "Save your desktop configuration",
101101
"description": "SaveDesktop lets you save your current configuration (themes, icons, wallpapers, all desktop environment settings, extensions, etc.) with one click.",
102-
"translator_credits": "Translator github-link"
102+
"translator_credits": ""
103103
}

0 commit comments

Comments
 (0)