Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

photo frame app?

Graphical Environments, Managers, Multimedia & Desktop questions.
Post Reply
Message
Author
stroudmw
Posts: 19
Joined: 2017-09-01 12:55

photo frame app?

#1 Post by stroudmw »

Can someone please recommend a desktop photo frame app? I'd ideally like for it to display my pictures in a corner of my desktop and randomly change them every few minutes. I'd also like to be able to re-size it.
I found one called "gphotoframe" but it's quite old, and has dependency issues.
I'm running Debian stretch 32bit, gnome desktop & gdm3.
Thanks.

User avatar
stevepusser
Posts: 12930
Joined: 2009-10-06 05:53
Has thanked: 41 times
Been thanked: 71 times

Re: photo frame app?

#2 Post by stevepusser »

According to this page: https://code.google.com/archive/p/gphotoframe/ the last 2.0.2 release was a couple of years ago, and the same 2.0.2 is in the Arch AUR. But I'm having trouble finding the source--will keep looking.

Source and a patch to build against webkit2gtk can be downloaded from the bottom of the AUR page: https://aur.archlinux.org/packages/gphotoframe/
MX Linux packager and developer

User avatar
oswaldkelso
df -h | grep > 20TiB
df -h | grep > 20TiB
Posts: 1494
Joined: 2005-07-26 23:20
Location: UK
Has thanked: 1 time
Been thanked: 59 times

Re: photo frame app?

#3 Post by oswaldkelso »

Any photo viewer with slideshow options or does a photo frame do something else?

qiv is in Debian, has a load of options but this works quite well.

Make a text file called "photo-frame"
Make it executable add the command below and we have a "photo frame" Not sure if I'd call it an "app" though :mrgreen:

Code: Select all

#!/bin/bash
# This shell script launches qiv as a picture frame viewer.

qiv  --fixed_width 300 --no_statusbar --slide --random -e  --delay=5 *
Free Software Matters
Ash init durbatulûk, ash init gimbatul,
Ash init thrakatulûk agh burzum-ishi krimpatul.
My oldest used PC: 1999 imac 333Mhz 256MB PPC abandoned by Debian

stroudmw
Posts: 19
Joined: 2017-09-01 12:55

Re: photo frame app?

#4 Post by stroudmw »

Thanks! qiv is great!

User avatar
debiman
Posts: 3063
Joined: 2013-03-12 07:18

Re: photo frame app?

#5 Post by debiman »

additionally you'd have to tell your window manager to keep it on the bottom, plastered to your desktop.

stroudmw
Posts: 19
Joined: 2017-09-01 12:55

Re: photo frame app?

#6 Post by stroudmw »

How would suggest I do that? I'm using XFCE and lightdm.

User avatar
oswaldkelso
df -h | grep > 20TiB
df -h | grep > 20TiB
Posts: 1494
Joined: 2005-07-26 23:20
Location: UK
Has thanked: 1 time
Been thanked: 59 times

Re: photo frame app?

#7 Post by oswaldkelso »

stroudmw wrote:How would suggest I do that? I'm using XFCE and lightdm.
First you need to brush up on your search foo. Nothing on a plate here. Free-software is not those slaveware offerings from Apple and Microsoft. Here your expected to try first, show what you tried then ask for pointers on what you've tried. If you had searched you'd have found

http://oswaldkelso.blogspot.co.uk/2013/ ... paper.html or https://unix.stackexchange.com/question ... -wallpaper like I did :D

That said. I would do this. Just set the path to your family/xmas/funny what ever photos. Be best to make sure they're not big files but large enough to look good on what ever size screen you have.
You need the feh package for this

Code: Select all

  #!/bin/bash
# If used as a wallpaper/photo-frame switcher make sure the images are large enough but not to large!
while true; do
  find ~/images/backgrounds/ -type f \( -name '*.jpg' -o -name '*.png' \) -print0 |
    shuf -n1 -z | xargs -0 feh --bg-scale
    sleep 1m
done
Free Software Matters
Ash init durbatulûk, ash init gimbatul,
Ash init thrakatulûk agh burzum-ishi krimpatul.
My oldest used PC: 1999 imac 333Mhz 256MB PPC abandoned by Debian

stroudmw
Posts: 19
Joined: 2017-09-01 12:55

Re: photo frame app?

#8 Post by stroudmw »

sorry I annoyed you.
additionally you'd have to tell your window manager to keep it on the bottom, plastered to your desktop.
really didn't give me a lot to go on, and was rather too ambiguous for a search.

but thanks for the information.

User avatar
oswaldkelso
df -h | grep > 20TiB
df -h | grep > 20TiB
Posts: 1494
Joined: 2005-07-26 23:20
Location: UK
Has thanked: 1 time
Been thanked: 59 times

Re: photo frame app?

#9 Post by oswaldkelso »

You didn't just saving you future grief :wink:

While here after showing you how to start the damn script I think it only right to say how to stop it :mrgreen:

Open a terminal and find the script

"ps aux | grep name_of_script" eg. so in my case

Code: Select all

ps aux | grep wallpaper-switcher
looks like this on my system:
$ ps aux | grep wallpaper-switcher
Unknown HZ value! (94) Assume 100.
kelsoo 32118 0.0 0.0 4488 1388 tty1 S 14:56 0:00 /bin/bash /home/kelsoo/wallpaper-switcher
kelsoo 32225 0.0 0.0 2652 944 pts/0 S+ 14:56 0:00 grep --color=auto wallpaper-switcher
then "kill -9 PID"

In computing, the process identifier (normally referred to as the process ID or just PID) so in the above example 32118 is the script PID

Code: Select all

kill -9 32118
enjoy
Free Software Matters
Ash init durbatulûk, ash init gimbatul,
Ash init thrakatulûk agh burzum-ishi krimpatul.
My oldest used PC: 1999 imac 333Mhz 256MB PPC abandoned by Debian

User avatar
debiman
Posts: 3063
Joined: 2013-03-12 07:18

Re: photo frame app?

#10 Post by debiman »

stroudmw wrote:
additionally you'd have to tell your window manager to keep it on the bottom, plastered to your desktop.
really didn't give me a lot to go on, and was rather too ambiguous for a search.
hmm.
first you said you use gnome, now it's xfce. now that's rather ambiguous.
anyhow, i would know how to do it for openbox or fluxbox, but not fo the window managers used by these DE's.
that's why i didn't go into more detail.

but theoretically, and to help you get going with those web search skills, you'd
  1. find out which window manager you're using
  2. find out how it can be configured,
  3. specifically to keep certain application windows on the bottom.

stroudmw
Posts: 19
Joined: 2017-09-01 12:55

Re: photo frame app?

#11 Post by stroudmw »

again... sorry for annoying you. I shall be more careful in future.

User avatar
debiman
Posts: 3063
Joined: 2013-03-12 07:18

Re: photo frame app?

#12 Post by debiman »

stroudmw wrote:again... sorry for annoying you. I shall be more careful in future.
nobody said that they're annoyed by you.
where did you get that notion?
we enjoy this sort of stuff.
instead of apologizing you should roll up your sleeves and get going...

Post Reply