diff options
author | streetturtle <streetturtle@gmail.com> | 2020-11-14 12:59:05 -0500 |
---|---|---|
committer | streetturtle <streetturtle@gmail.com> | 2020-11-14 13:00:43 -0500 |
commit | c9159a36b33e7f1cc9309758c2619fb046994c35 (patch) | |
tree | 2e5f780c72b14b5fdd88266049b36c14e1dbc054 /run-shell-3 | |
parent | 3756d3af4fc3911ff654e2daee735493729feb12 (diff) |
[run-shell] use screen dimensions
Diffstat (limited to 'run-shell-3')
-rw-r--r-- | run-shell-3/run-shell.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-shell-3/run-shell.lua b/run-shell-3/run-shell.lua index 8fab5fd..9bd575b 100644 --- a/run-shell-3/run-shell.lua +++ b/run-shell-3/run-shell.lua @@ -34,8 +34,8 @@ function widget.new() local w = wibox { visible = false, ontop = true, - height = 1060, - width = 1920 + height = mouse.screen.geometry.height, + width = mouse.screen.geometry.width, } w:setup { |