summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-02-25 17:06:08 +0100
committerAnton Khirnov <anton@khirnov.net>2021-02-25 17:06:08 +0100
commita974614ee77426872fc34b2f60a851c3eda2a535 (patch)
tree0ad46421233b7d6eba181ee2d7861e7dfc369ac1
parent3620bcb89d252a55d73b51d13f95d9f572c3da82 (diff)
rc: fix broken indentation
-rw-r--r--rc.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/rc.lua b/rc.lua
index 0dfd276..bad5a4c 100644
--- a/rc.lua
+++ b/rc.lua
@@ -91,12 +91,12 @@ for s in screen do
local pgr = pager.Pager:new(s, 128, 800)
pgr:set_desktop(wsp.desktops[s.index])
- wsp.signals:connect_signal("desktop:view",
- function(signals, view_screen, desktop)
- if view_screen == s then
- pgr:set_desktop(wsp.desktops[desktop])
- end
- end)
+ wsp.signals:connect_signal("desktop:view",
+ function(signals, view_screen, desktop)
+ if view_screen == s then
+ pgr:set_desktop(wsp.desktops[desktop])
+ end
+ end)
-- Widgets that are aligned to the left
local left_layout = wibox.layout.fixed.vertical()