How To Install keybinder on Fedora 34
Introduction
In this tutorial we learn how to install keybinder
on Fedora 34.
What is keybinder
keybinder is a library for registering global keyboard shortcuts. Keybinder works with GTK-based applications using the X Window System. The library contains - A C library, libkeybinder - An examples directory with programs in C, Lua, and Vala. keybinder 0.3.1 20.fc34 x86_64 20 k keybinder-0.3.1-20.fc34.src.rpm fedora A library for registering global keyboard shortcuts https MIT keybinder is a library for registering global keyboard shortcuts. Keybinder works with GTK-based applications using the X Window System. The library contains - A C library, libkeybinder - An examples directory with programs in C, Lua, and Vala.
We can use yum
or dnf
to install keybinder
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install keybinder.
Install keybinder on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install keybinder
using dnf
by running the following command:
sudo dnf -y install keybinder
Install keybinder on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install keybinder
using yum
by running the following command:
sudo yum -y install keybinder
How To Uninstall keybinder on Fedora 34
To uninstall only the keybinder
package we can use the following command:
sudo dnf remove keybinder
keybinder Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/8d
/usr/lib/.build-id/8d/b0f3258f77a32a269a0bff12675e308840690e
/usr/lib64/girepository-1.0/Keybinder-0.0.typelib
/usr/lib64/libkeybinder.so.0
/usr/lib64/libkeybinder.so.0.1.0
/usr/share/doc/keybinder
/usr/share/doc/keybinder/AUTHORS
/usr/share/doc/keybinder/NEWS
/usr/share/doc/keybinder/README
/usr/share/gir-1.0/Keybinder-0.0.gir
/usr/lib/.build-id
/usr/lib/.build-id/f2
/usr/lib/.build-id/f2/eb33f565b61188631e9ff394dc31a08cfcd256
/usr/lib/girepository-1.0/Keybinder-0.0.typelib
/usr/lib/libkeybinder.so.0
/usr/lib/libkeybinder.so.0.1.0
/usr/share/doc/keybinder
/usr/share/doc/keybinder/AUTHORS
/usr/share/doc/keybinder/NEWS
/usr/share/doc/keybinder/README
/usr/share/gir-1.0/Keybinder-0.0.gir
References
- [keybinder website](https://github.com/engla/keybinder https://github.com/engla/keybinder)
Summary
In this tutorial we learn how to install keybinder
on Fedora 34 using yum and dnf.