about summary refs log tree commit diff
path: root/awesome/.config/awesome/rc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'awesome/.config/awesome/rc.lua')
-rw-r--r--awesome/.config/awesome/rc.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index fc7b02d..faaef28 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -55,7 +55,7 @@ local root_terminal = terminal .. " -e su -"
 local ranger = terminal .. " -e ranger"
 local python = terminal .. " -e python"
 local guile = terminal .. " -e guile"
-local clojure = terminal .. " -e clojure"
+local calcurse = terminal .. " -e calcurse"
 local aerc = terminal .. " -e aerc"
 local amfora = terminal .. " -e amfora"
 local emacs = "emacs"
@@ -170,7 +170,7 @@ menubar.utils.terminal = terminal
 
 -- {{{ Wibar
 -- Create a textclock widget
-local mytextclock = wibox.widget.textclock" #%u %FT%R"
+local mytextclock = wibox.widget.textclock(" #%u %FT%R", 59)
 
 -- Create a CPU usage widget
 local mycpuusage = wibox.widget.textbox()
@@ -494,6 +494,8 @@ local globalkeys = awful.util.table.join(
             {description = "open Emacs", group = "launcher"}),
   awful.key({modkey}, "e", spawner(aerc),
             {description = "open aerc", group = "launcher"}),
+  awful.key({modkey}, "c", spawner(calcurse),
+            {description = "open calcurse", group = "launcher"}),
   awful.key({modkey}, "a", spawner"liferea",
             {description = "open Atom feed", group = "launcher"}),
   awful.key({modkey, "Shift"}, "a", spawner(amfora),
@@ -514,8 +516,6 @@ local globalkeys = awful.util.table.join(
             {description = "open ranger file manager", group = "launcher"}),
   awful.key({modkey}, "p", spawner(python),
             {description = "open Python 3 interpreter", group = "launcher"}),
-  awful.key({modkey}, "c", spawner(clojure),
-            {description = "open Clojure interpreter", group = "launcher"}),
   awful.key({modkey}, "g", spawner(guile),
             {description = "open Guile interpreter", group = "launcher"}),
   awful.key({modkey}, "s", spawner"slock",