Skip to content

Commit

Permalink
cinnamon-dynamic-wallpaper@TobiZog: Cinnamon Dynamic Wallpaper v2.2 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiZog authored Feb 4, 2024
1 parent 891094d commit 1b3121d
Show file tree
Hide file tree
Showing 120 changed files with 1,353 additions and 1,078 deletions.
10 changes: 10 additions & 0 deletions cinnamon-dynamic-wallpaper@TobiZog/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Version 2.2
- Bugfixes
- Migrate code to MVVM pattern
- Adding option to change the location provider
- Adding example image for dynamic background color

# Version 2.1
- Bugfixes
- Smaller UI for displays with reduced resolution (< 1000px height)

# Version 2.0
- New App icon
- Preferences window redesign - All settings are now in one window accessable!
Expand Down
6 changes: 3 additions & 3 deletions cinnamon-dynamic-wallpaper@TobiZog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ This extension switches the background image of your Cinnamon desktop multiple t
- 10 day periods
- HEIF converter
- Image configuration assistent with simple one-click setup for image choices
- Online location estimation or offline with manual latitude and longitude input
- Online location estimation (three provider) or offline with manual latitude and longitude input
- Time periods individual configured by user
- Offline sun angles estimation
- Image stretching over multiple displays or repeat image for every display
- Show image on lock screen
- Creating a color gradient based on the current wallpaper for images which not fill the whole screen

### Tested Cinnamon versions
- 5.4 (Mint 21)
Expand All @@ -37,7 +37,7 @@ This extension switches the background image of your Cinnamon desktop multiple t
3. Search and download it

### From the repo
1. Download the Repository
1. Download the latest from the Releases page on GitHub: https://github.com/TobiZog/cinnamon-dynamic-wallpaper/releases
2. Extract the files
3. Copy the folder `cinnamon-dynamic-wallpaper@TobiZog` to `~/.local/share/cinnamon/extensions/`
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ CinnamonDynamicWallpaperExtension.prototype = {
_loop: function () {
if (looping) {
try {
Util.spawnCommandLine("/usr/bin/env python3 " + DIRECTORY.path + "/loop.py")
Util.spawnCommandLine("/usr/bin/env python3 " + DIRECTORY.path + "/src/main.py loop")
} catch(e) {
this.showNotification("Error!",
"Cinnamon Dynamic Wallpaper got an error while running the loop script. Please create an issue on GitHub.")
Expand Down Expand Up @@ -127,8 +127,7 @@ CinnamonDynamicWallpaperExtension.prototype = {
notification.addButton("open-settings", _("Open settings"));

notification.connect("action-invoked", () =>
Util.spawnCommandLine("/usr/bin/env python3 " +
DIRECTORY.path + "/preferences.py"));
Util.spawnCommandLine("/usr/bin/env python3 " + DIRECTORY.path + "/src/main.py"));
}

// Put all together
Expand Down

This file was deleted.

Loading

0 comments on commit 1b3121d

Please sign in to comment.