awesome-wm-widgets/run-shell/README.md

25 lines
566 B
Markdown
Raw Normal View History

2019-02-05 02:29:08 +01:00
# Run Shell
Blurs background and shows widget with run prompts:
2019-02-05 02:33:17 +01:00
![screenshot](./screenshot.png)
## Install
1. Clone this repo under **~/.config/awesome/**:
```bash
git clone https://github.com/streetturtle/awesome-wm-widgets.git ~/.config/awesome/
```
1. Require weather widget at the beginning of **rc.lua**:
```lua
local run_shell = require("awesome-wm-widgets.run_shell.run_shell")
```
1. Use it (don't forget to comment out the default prompt):
```lua
awful.key({modkey}, "r", function () run_shell.launch() end),
```