dms-bongo-cat

(★ 15)

Watch the cat tap its paws on your bar in real-time as you type

File Explorer

  • BongoSettings.qml
  • BongoWidget.qml
  • LICENSE
  • plugin.json
  • README.md
  • screenshot.png

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

evtest

View Details ▼

Display information from input device drivers.

sudo evtest

List all detected input devices and select one for monitoring:

sudo evtest /dev/input/event{{number}}

Display events from a specific input device:

sudo evtest --grab /dev/input/event{{number}}

Grab the device exclusively, preventing other clients from receiving events:

🔍

libinput

View Details ▼

Interface with libinput.

sudo libinput list-devices

List all devices recognized by libinput:

sudo libinput debug-events

Print all libinput events:

sudo libinput debug-gui

Show a GUI to visualize libinput's events:

🔍

usermod

View Details ▼

Modify a user account.
See also: `users`, `useradd`, `userdel`.

sudo usermod {{[-l|--login]}} {{new_username}} {{username}}

Change a username:

sudo usermod {{[-u|--uid]}} {{id}} {{username}}

Change a user ID:

sudo usermod {{[-s|--shell]}} {{path/to/shell}} {{username}}

Change a user shell:

// repository documentation