2017-07-20 23:23:01 +02:00
|
|
|
# A simple CAPS LOCK widget for Awesome
|
|
|
|
|
|
|
|
Useful when you have a keyboard that does not have a CAPS LOCK indicator.
|
|
|
|
|
|
|
|
This widget is really simple and parses the output of `xset` to figure out
|
|
|
|
whether CAPS LOCK is active or not. (Hint: you need the `xset` utility for this
|
|
|
|
widget to work)
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
|
|
|
1. Ensure that `xset` is available to you on your system.
|
2017-07-21 00:05:00 +02:00
|
|
|
2. Copy `capslock.lua` in your `~/.config/awesome/ folder` (e.g. by cloning this
|
|
|
|
repository).
|
2017-07-20 23:23:01 +02:00
|
|
|
3. Restart Awesome (e.g. press `modkey + Control` or run `awesome-client
|
|
|
|
"awesome.restart()"` from a terminal).
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
|
|
|
|
For **Awesome 4.x**, add the following to your `~/.config/awesome/rc.lua`:
|
|
|
|
|
|
|
|
``` lua
|
2017-07-20 23:41:30 +02:00
|
|
|
-- If you just copied the file in ~/.config/awesome
|
2017-07-20 23:23:01 +02:00
|
|
|
local capslock = require("capslock")
|
|
|
|
|
2017-07-20 23:41:30 +02:00
|
|
|
-- If you cloned the repo as a submodule in
|
|
|
|
-- ~/.config/awesome/external/capslock
|
|
|
|
-- local capslock = require("external.capslock.capslock")
|
|
|
|
|
2017-07-20 23:23:01 +02:00
|
|
|
-- more config here
|
|
|
|
|
|
|
|
-- Add widgets to the wibox
|
|
|
|
s.mywibox:setup {
|
|
|
|
-- more config here
|
|
|
|
{ -- Right widgets
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
wibox.widget.systray(),
|
|
|
|
capslock,
|
|
|
|
-- more config here
|
|
|
|
-- {{{ Key bindings
|
|
|
|
local globalkeys = awful.util.table.join(
|
|
|
|
capslock.key,
|
|
|
|
-- more config follows
|
|
|
|
```
|
|
|
|
|
|
|
|
Now, when you activate CAPS LOCK, a chevron sign will be
|
|
|
|
displayed: ![capslock screenshot](/screenshots/capslock_widget.png?raw=true)
|
|
|
|
|
|
|
|
# Contributing
|
|
|
|
|
|
|
|
If you have ideas about how to make this better, feel free to open an issue or
|
|
|
|
submit a pull request.
|