summaryrefslogtreecommitdiff
path: root/run-shell-2/run.lua
diff options
context:
space:
mode:
authorPavel Makhov <pmakhov@touchtunes.com>2019-01-25 22:26:39 -0500
committerPavel Makhov <pmakhov@touchtunes.com>2019-01-25 22:26:39 -0500
commit1d08a478fd02c1c8405754ebc0b9d5a146b865f3 (patch)
tree8e179bc30720f04ac5d6b1ce6fdd20c770cf9ebe /run-shell-2/run.lua
parent15e6d0fcd96acd02250fc6a5bff6590c118cb8a1 (diff)
some improvements to run-shell2
Diffstat (limited to 'run-shell-2/run.lua')
-rw-r--r--run-shell-2/run.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/run-shell-2/run.lua b/run-shell-2/run.lua
new file mode 100644
index 0000000..12644ba
--- /dev/null
+++ b/run-shell-2/run.lua
@@ -0,0 +1,21 @@
+local wibox = require("wibox")
+
+local icon = {
+ {
+ markup = '<span font="awesomewm-font 14" color="#ffffff">a</span>',
+ widget = wibox.widget.textbox,
+ },
+ id = 'icon',
+ top = 2,
+ left = 10,
+ layout = wibox.container.margin
+}
+
+local text = '<b>Run</b>: '
+
+return {
+ icon = icon,
+ text = text,
+ cursor_color = '#74aeab',
+ history = '/history'
+} \ No newline at end of file