Sunday, 1 February 2026

Linux Operating System FEDORA WORKSTATION 43 _ SLIDESHOW WITH FEDORA WORKSTATION 43 HOW-TO

Today
You said
Hi Copilot , I am running Linux OS FEDORA Workststion 43 on my MSI GP70 2PE Leopard Laptop and I would like you to teach me or give me a step-by-step procedure how can I create a screen saver on my Laptop with different images scrolling one by one on the Screen/Display of my MSI GP70 2PE Leopard Laptop ? I have many beautiful scenery images which I kept inside my Laptop in the form of .jpg file , and if possible , I would like to display them on my "Linux OS FEDORA Workststion 43" Laptop and allow those images scroll down one by one on the Screen/Display of my MSI GP70 2PE Leopard Laptop , and I sincerely hope Copilot that you could help me in this interesting endeavour ???!!! Please go easy on me because Grandpa Norizan here is only an avereage Linux user ! I have not much problem doing that with the Windows 8 Operating System or Windows 10 Operating System sitting on my MSI GP70 2PE Leopard Laptop but with Linux Operating System , I believe , the learning curve is much steeper ? THANKS Copilot for your answer.
Copilot said

Grandpa Norizan, I love your enthusiasm! Let’s make those beautiful scenery images dance across your Fedora 43 screen. Linux can feel a bit steeper than Windows, but I’ll walk you through step by step so it’s approachable.

🖼️ Step-by-Step: Slideshow Screensaver on Fedora 43

1. Install a Screensaver Tool

Fedora doesn’t ship with a screensaver by default. The most popular option is XScreenSaver.

  • Open a terminal and type:

    bash
    sudo dnf install xscreensaver xscreensaver-extras xscreensaver-gl-extra
    
  • This installs the main program plus extra visual effects.

2. Enable XScreenSaver

  • Disable GNOME’s built-in blank screen (since Fedora Workstation uses GNOME).

    bash
    gsettings set org.gnome.desktop.session idle-delay 0
    
  • Start XScreenSaver:

    bash
    xscreensaver-demo &
    
  • This opens the configuration window where you can choose styles.

3. Configure Slideshow of Your Images

  • In the XScreenSaver Demo window, scroll down and look for "GLSlideshow".

  • Select it, then click Settings.

  • Point it to the folder where your .jpg images are stored.

  • Adjust timing (e.g., how long each image stays before switching).

  • You can set transitions like fade or scroll.

4. Autostart XScreenSaver

So it runs automatically when idle:

  • Open Startup Applications in GNOME (or create a .desktop file in ~/.config/autostart/).

  • Add:

    bash
    xscreensaver -nosplash
    
  • Now, whenever your laptop is idle, your scenery slideshow will appear.

5. Optional Tweaks

  • If you want images to scroll down one by one (like a moving slideshow), experiment with GLSlideshow or SlideScreen options in XScreenSaver.

  • You can also adjust resolution scaling so your images fit nicely.

✅ That’s it! You’ll now have your personal photo gallery as a screensaver on Fedora.

Would you like me to also show you how to make it full-screen slideshow without XScreenSaver (using just GNOME tools like gnome-photos or feh)? That way you can pick whichever feels simpler.

You said
Yes Copilot , I would also like you to show me a full-screen slideshow without XScreenSaver using GNOME tools like gnome-photos ? THANKS Copilot.
Copilot said

Perfect, Grandpa Norizan! Let’s set up a full-screen slideshow without XScreenSaver, using GNOME tools that Fedora Workstation already supports. This way, you can enjoy your scenery photos in a simple, modern way.

🖼️ Method 1: Using GNOME Photos

GNOME Photos is a built-in app on Fedora that can display your images in full screen.

Steps:

  1. Open GNOME Photos

    • Press Super (Windows key) and type Photos.

    • Launch the app.

  2. Import Your Images

    • Click the + or Import button.

    • Select the folder where your .jpg scenery images are stored.

  3. Start Slideshow

    • Open any image.

    • Press F11 (or click the full-screen button).

    • Then press F5 or look for the Slideshow option in the menu.

    • Your images will now scroll one by one in full screen.

🖼️ Method 2: Using eog (Eye of GNOME)

This is the default GNOME image viewer, very lightweight.

Steps:

  1. Open a terminal and type:

    bash
    eog /path/to/your/images/*.jpg
    

    Replace /path/to/your/images/ with the folder containing your photos.

  2. Once the viewer opens, press:

    • F11 → Full screen

    • F5 → Slideshow mode

This will cycle through your images automatically.

🖼️ Method 3: Using feh (Advanced Slideshow Tool)

If you want more control (like timing, transitions), install feh.

  1. Install it:

    bash
    sudo dnf install feh
    
  2. Run slideshow:

    bash
    feh --fullscreen --slideshow-delay 5 /path/to/your/images/
    
    • --fullscreen → full screen

    • --slideshow-delay 5 → each image shows for 5 seconds

🎯 Which to Choose?

  • GNOME Photos → easiest, graphical, beginner-friendly.

  • Eye of GNOME (eog) → simple, already installed, quick slideshow.

  • feh → most customizable, great if you want to tweak timing and effects.

Would you like me to also show you how to make the slideshow start automatically when your laptop is idle (like a true screensaver), or do you prefer launching it manually when you want to enjoy your scenery?

You said
Copilot , could you please teach me how do i install gnome-photos on my MSI GP70 2PE Leopard Laptop which is running Linux OS FEDORA Workstation 43 ? THANKS Copilot.
Copilot said

Great question, Grandpa Norizan! Fedora Workstation doesn’t always include GNOME Photos by default, but you can install it easily from Fedora’s software repositories. Here’s the step-by-step guide:

📥 Installing GNOME Photos on Fedora 43

1. Update Your System

It’s always good practice to refresh your package list first:

bash
sudo dnf update

2. Install GNOME Photos

Run:

bash
sudo dnf install gnome-photos

This will download and install GNOME Photos along with any required dependencies.

3. Launch GNOME Photos

  • Press the Super (Windows key) on your keyboard.

  • Type Photos in the search bar.

  • Click on the Photos app to open it.

4. Import Your Images

  • Inside GNOME Photos, click Import.

  • Select the folder where your .jpg scenery images are stored.

  • They’ll now appear in the app’s library.

5. Start a Slideshow

  • Open any image.

  • Press F11 for full screen.

  • Press F5 or choose Slideshow from the menu.

  • Your images will scroll one by one across the screen.

✅ That’s it! You now have GNOME Photos installed and ready to show off your scenery collection in a full-screen slideshow.

Would you like me to also show you how to set GNOME Photos to start automatically when your laptop is idle, so it behaves more like a true screensaver?

You said
Copilot , could you please teach me how do i install gnome-photos on my MSI GP70 2PE Leopard Laptop which is running Linux OS FEDORA Workstation 43 ? THANKS Copilot.
Copilot said

Got it, Grandpa Norizan! Let’s install GNOME Photos on your Fedora Workstation 43 step by step.

📥 Installing GNOME Photos on Fedora 43

1. Update Your System

Open a terminal and refresh your package list:

bash
sudo dnf update

2. Install GNOME Photos

Run this command:

bash
sudo dnf install gnome-photos

This will download and install GNOME Photos along with any required libraries.

3. Launch GNOME Photos

  • Press the Super (Windows key) on your keyboard.

  • Type Photos in the search bar.

  • Click on the Photos app to open it.

4. Import Your Images

  • Inside GNOME Photos, click Import.

  • Select the folder where your .jpg scenery images are stored.

  • They’ll now appear in the app’s library.

5. Start a Slideshow

  • Open any image.

  • Press F11 for full screen.

  • Press F5 or choose Slideshow from the menu.

  • Your images will scroll one by one across the screen.

✅ That’s all you need to get GNOME Photos running on Fedora 43. It’s a simple way to enjoy your scenery collection in full-screen mode without extra screensaver software.

Would you like me to also show you how to set GNOME Photos to start automatically when your laptop is idle, so it behaves more like a true screensaver?

You said
Copilot , could you please teach me or give me a step-by-step procedure how do I Start A Slideshow with GNOME Photos ........ what are the keys on the Keyboard that I have to press and so on ........ and things like that ? THANKS Copilot.
Copilot said

Alright Grandpa Norizan, let’s go step by step so you can confidently start a slideshow with GNOME Photos on your Fedora 43 laptop. I’ll include the exact keyboard shortcuts and menu options you’ll need.

🎞️ Starting a Slideshow in GNOME Photos

1. Open GNOME Photos

  • Press the Super (Windows key) on your keyboard.

  • Type Photos and launch the app.

2. Import Your Images

  • Inside GNOME Photos, click Import (usually a plus sign or menu option).

  • Select the folder where your .jpg scenery images are stored.

  • Your images will now appear in the Photos library.

3. Open an Image

  • Double-click on any image to open it in viewing mode.

4. Enter Full-Screen Mode

  • Press F11 → This makes the image fill the entire screen.

  • Alternatively, click the full-screen icon in the top-right corner.

5. Start the Slideshow

  • Press F5 → This begins the slideshow, cycling through your images one by one.

  • You can also right-click on the image and select Slideshow from the menu.

6. Control the Slideshow

  • Spacebar → Pause/Resume slideshow.

  • Right Arrow (→) → Next image.

  • Left Arrow (←) → Previous image.

  • Esc → Exit full-screen or stop slideshow.

📝 Quick Recap of Keys

  • F11 → Full screen

  • F5 → Start slideshow

  • Spacebar → Pause/Resume

  • → / ← → Navigate images

  • Esc → Exit

Now you can sit back and enjoy your scenery collection scrolling across your screen, just like a digital photo frame!

Would you like me to also show you how to adjust the slideshow speed (how long each photo stays before switching), so it matches your preference?


No comments:

Post a Comment