Installing Kazam on Fedora Workstation 38
en linux fedora sysadminDo this on a fresh Fedora Workstation 38 to get the Kazam screen recorder running without having to add some sketchy 3rd party repo:
# Install pip
sudo dnf install python3-pip
# Install Kazam
pip install kazam
# Add a desktop file
cat <<EOF > $HOME/.local/share/applications/kazam.desktop
[Desktop Entry]
Name=Kazam
Comment=Record your screen
Keywords=screenshot;screencast;screencap;screen capture;screen recorder;
Exec=kazam
Icon=kazam
Terminal=false
Type=Application
StartupNotify=true
Categories=Utilities;Graphics;AudioVideo;Video;
EOF
And Kazam will be available wherever you usually find your applications. Enjoy!