Raspberry Pi – install program to make it display slide show from flash drive

1. to install FEH open Terminal and run

sudo apt-get install feh

2. Open text editor and copy the following, then save it as “slideShow.sh” to the desktop

#!/bin/sh
feh -Y -x -q -D 5 -B blash -F -Z -r /media

3. Right click “slideShow.sh” and select properties> Permissions tab> Allow executing file as program

How to fix Windows 11 Taskbar

If the icons on the taskbar are messed up or you can’t change the settings for the taskbar then try the following

Open command prompt as Administrator and run the following

  • sfc /scannow
  • DISM.exe /Online /Cleanup-image /Scanhealth
  • DISM.exe /Online /Cleanup-image /Restorehealth
  • sfc /scannow

Open Powershell as an Administrator and run the following

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}COPY