summaryrefslogtreecommitdiff
path: root/run-shell/README.md
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@users.noreply.github.com>2019-03-08 20:56:45 -0500
committerGitHub <noreply@github.com>2019-03-08 20:56:45 -0500
commit3bf894ad3bc42cdc2b2720e9bd52f9525e6c1168 (patch)
tree35c8fb71e5f211d608a70bcf859bf1fca6cbfa69 /run-shell/README.md
parent5bae3ab4246c9af9d4db8c29faa2de765e940123 (diff)
Rename README.md to README_old.md
Diffstat (limited to 'run-shell/README.md')
-rw-r--r--run-shell/README.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/run-shell/README.md b/run-shell/README.md
deleted file mode 100644
index 039a23c..0000000
--- a/run-shell/README.md
+++ /dev/null
@@ -1,34 +0,0 @@
-# Run Shell
-
-Blurs / pixelates background and shows widget with run prompt:
-
-![screenshot](./blur.png)
-
-![screenshot](./pixelate.png)
-
-## Installation
-
-1. To blur / pixelate the background this widget used [ffmpeg](https://www.ffmpeg.org/) and [frei0r](https://frei0r.dyne.org/) plugins (if you want to pixelate the background), which you need to install. Installation of those depends on your distribution, for ffmpeg just follow the installation section of the site, for frei0r I was able to install it by simply running
-
- ```
- sudo apt-get install frei0r-plugins
- ```
-
-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),
- ```
-:warning: I am not 100% sure but it may (memory) leak. If awesome uses lots of RAM just reload config (Ctrl + Mod4 + r).