A Porteus-esque wallpaper

You can share and discuss your work with other graphics designers here.
User avatar
M. Eerie
Moderator
Moderator
Posts: 622
Joined: 31 Aug 2017, 21:18
Distribution: Nemesis Xfce/MATE x64

A Porteus-esque wallpaper

Post#1 by M. Eerie » 11 Apr 2024, 08:54

I stumbled upon it by chance. Blueish + galleon :)

https://www.reddit.com/r/wallpaper/comm ... 3840x2160/
> Does not compute_ 🖖

https://forum.porteus.org/viewtopic.php?p=94310#p94310
https://forum.porteus.org/viewtopic.php?p=84002#p84002
https://forum.porteus.org/viewtopic.php?p=77174#p77174
https://forum.porteus.org/viewtopic.php?f=39&t=8584

Kulle
Warlord
Warlord
Posts: 604
Joined: 28 Jan 2017, 10:39
Distribution: v4.0 64bit Xfce
Location: Berlin

A Porteus-esque wallpaper

Post#2 by Kulle » 11 Apr 2024, 10:28

Hi M. Eerie,
the specified downloads
(21:9) 3440×1440, 2560×1080
(16:9) 3840×2160, 2560×1440, 1920×1080, 1600×900, 1366×768, 1280×720
(16:10) 2560×1600, 1920×1200, 1280×800
(4:3) 1600×1200, 1024×768
(5:4) 1280×1024
(3:4) 768×1024
(9:16) 1080×1920, 720×1280
(9:18.5) 720×1480

but don't work : 404 Not Found

User avatar
M. Eerie
Moderator
Moderator
Posts: 622
Joined: 31 Aug 2017, 21:18
Distribution: Nemesis Xfce/MATE x64

A Porteus-esque wallpaper

Post#3 by M. Eerie » 11 Apr 2024, 11:38

Hi.

The original [link] is 1080×607 webp format.

However, by clicking on the first post link, you get a 3840x2160 png, which you can save via right-click, save as...

The rest of the resolutions are generated automatically through this page which is under reconstruction. :unknown:

I suppose that having the original one can do the same from some other similar page.
> Does not compute_ 🖖

https://forum.porteus.org/viewtopic.php?p=94310#p94310
https://forum.porteus.org/viewtopic.php?p=84002#p84002
https://forum.porteus.org/viewtopic.php?p=77174#p77174
https://forum.porteus.org/viewtopic.php?f=39&t=8584

Kulle
Warlord
Warlord
Posts: 604
Joined: 28 Jan 2017, 10:39
Distribution: v4.0 64bit Xfce
Location: Berlin

A Porteus-esque wallpaper

Post#4 by Kulle » 22 Apr 2024, 16:10

If you right-click on an image, you can set that image as Wallpaper

Question for the developers:
What commands are behind it?

Right-click
--------------------------
create folder = mkdir
rename = mv
....
set as Wallpaper = ???

donald
Full of knowledge
Full of knowledge
Posts: 2074
Joined: 17 Jun 2013, 13:17
Distribution: Porteus 3.2.2 XFCE 32bit
Location: Germany

A Porteus-esque wallpaper

Post#5 by donald » 22 Apr 2024, 22:16

It depends on which Desktop is used.
In XFCE the right-click 'set as wallpaper' option in thunar is done by the thunar-wallpaper-plugin.so.

To do it by hand (in cli) use the xfconf tool.
First find out which settings are changed if you change the wallpaper:

Code: Select all

xfconf-query -c xfce4-desktop -m
this will monitor which value is changed if we change the wallpaper via GUI.

with that info we can change the wallpaper as we want - Example:

Code: Select all

xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/last-image -s /path/to/whatever.jpg
Done/tested with xfce 4.12 -- Hopefully it hasn't changed in newer XFCE versions.

Kulle
Warlord
Warlord
Posts: 604
Joined: 28 Jan 2017, 10:39
Distribution: v4.0 64bit Xfce
Location: Berlin

A Porteus-esque wallpaper

Post#6 by Kulle » 24 Apr 2024, 07:12

Hi Donald,
Didn't work for me:

Code: Select all

guest@porteux:~/Pictures$ xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/last-image -s /home/guest/Pictures/hintergrund.png
Property "/backdrop/screen0/monitor0/workspace0/last-image" does not exist on channel "xfce4-desktop". If a new property should be created, use the --create option.
guest@porteux:~/Pictures$ xfconf-query --create -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/last-image -s /home/guest/Pictures/hintergrund.png
When creating a new property, the value type must be specified.
guest@porteux:~/Pictures$ xfconf-query --create string -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/last-image -s /home/guest/Pictures/hintergrund.png
When creating a new property, the value type must be specified.
guest@porteux:~/Pictures$ xfconf-query --create -string -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/last-image -s /home/guest/Pictures/hintergrund.png
Option parsing failed: Error parsing option -t.
I'm using Xfce 4.16

Kulle
Warlord
Warlord
Posts: 604
Joined: 28 Jan 2017, 10:39
Distribution: v4.0 64bit Xfce
Location: Berlin

A Porteus-esque wallpaper

Post#7 by Kulle » 24 Apr 2024, 08:34

Now I tried this command.
Nothing happens!

Code: Select all

guest@porteux:~$ xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/last-image --create --type string -s /home/guest/Bilder/hintergrund.png

donald
Full of knowledge
Full of knowledge
Posts: 2074
Joined: 17 Jun 2013, 13:17
Distribution: Porteus 3.2.2 XFCE 32bit
Location: Germany

A Porteus-esque wallpaper

Post#8 by donald » 25 Apr 2024, 02:29

It does work if you follow the instructions given above.
-- tested with xfce 4.16 in a VM --

again:
open terminal and run xfconf-query -c xfce4-desktop -m
let the terminal stay open.
change the wallpaper the usual way via the xfce desktop settings GUI.
the terminal will show you what string has changed.
(most likely the one which ends with 'last-image')
That string, shown in the terminal, is what you need.

You have to use your string
xfconf-query -c xfce4-desktop -p /your/string -s /path/to/image

oh,btw I use porteus not porteux

Kulle
Warlord
Warlord
Posts: 604
Joined: 28 Jan 2017, 10:39
Distribution: v4.0 64bit Xfce
Location: Berlin

A Porteus-esque wallpaper

Post#9 by Kulle » 25 Apr 2024, 09:36

Hi Donald
Now I understand the principle of monitoring: xfconf-query -c xfce4-desktop -m
Thank you.
This command works now:
xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitoreDP/workspace0/last-image -s /path/to/image

User avatar
Rava
Contributor
Contributor
Posts: 5424
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

A Porteus-esque wallpaper

Post#10 by Rava » 26 Apr 2024, 01:28

I tried looking at https://resi.ze-robot.com/ but all it says is
"Hello. I am Resizer, Ze Robot.
Sorry, Ze Robot is under reconstruction.
Available functions are limited. "
Functions limited? Such understatement. :wall: Any image I click is not available.
Not Found (#404)
Source not found
The above error occurred while the Web server was processing your request.
Does the site not store finished images? Are they all generated on the fly?
Cheers!
Yours Rava

Post Reply