Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felfert/catlock
Protect your Linux computer from cats, walking over the keyboard or playing with the mouse
https://github.com/felfert/catlock
cpp11 gadgets x11
Last synced: 22 days ago
JSON representation
Protect your Linux computer from cats, walking over the keyboard or playing with the mouse
- Host: GitHub
- URL: https://github.com/felfert/catlock
- Owner: felfert
- License: bsd-2-clause
- Created: 2019-07-06T16:55:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-26T17:51:12.000Z (over 2 years ago)
- Last Synced: 2024-10-29T22:53:12.859Z (2 months ago)
- Topics: cpp11, gadgets, x11
- Language: CMake
- Homepage:
- Size: 30.3 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
# catlock
This is a simple program to protect my computer from my cat walking over the keyboard
and playing with the mouse :-)It was inspired by xtrlock, but instead requiring a password to unlock, a simple three-key combination (**Ctrl+Alt+KP_Enter**) is sufficient to terminate. Furthermore, pressing **Meta+L** switches off the screen backlight (like xset dpms force off does). These shortcuts are configurable. Just run ```catlock --help``` to get a short description.
This software is distributed under a **BSD-2-Clause** license. The following parts have been taken from external projects:
* The cat icon and cat bitmap for the cursor is taken from [oneko](https://directory.fsf.org/wiki/Oneko) which is public domain.
* The cmake FindXCB script and it's dependency (BSD-3-Clause license) from the [KDE project](https://github.com/KDE/extra-cmake-modules).
* The cmake FindPOPT script (BSD-2-Clause license) from Lars Baehren's [CMakeModules project](https://github.com/lbaehren/CMakeModules).
* The cmake FindXmlTo script (BSD-3-Clause license) from the [rabbitmq-c project](https://github.com/alanxz/rabbitmq-c)## How to build
### Prerequisites
catlock requires XCB including it's extensions KEYSYMS IMAGE and DPMS. It uses cmake as a build system and is written in **C++**. So:On a **Ubuntu-18.04** system in order to get all required tools and dependencies, you would run:
```
sudo apt-get install git cmake g++ pkg-config \
xmlto libxcb-keysyms1-dev libxcb-image0-dev \
libxcb-dpms0-dev libxext-dev libpopt-dev
```On a **Fedora-29** system, you would run:
```
sudo dnf install git cmake gcc-c++ pkg-config xmlto \
make libxcb-devel xcb-util-keysyms-devel \
xcb-util-image-devel libX11-devel popt-devel
```
### Fetch the repo
```
git clone https://github.com/felfert/catlock.git
```
### The actual build and install
```
mkdir catlock/build
cd catlock/build
cmake ..
make
sudo make install
```