summaryrefslogtreecommitdiff
path: root/brightness-widget/brightness.lua
diff options
context:
space:
mode:
authorAugusto Gunsch <augustogunsch@tutanota.com>2022-01-24 12:20:36 -0300
committerAugusto Gunsch <augustogunsch@tutanota.com>2022-01-24 12:20:36 -0300
commit779485872c9f683de9abb42f9b32b0acf9d1483b (patch)
tree7e84fa7a77400572e7b512dab6a71ca56f6ffb6c /brightness-widget/brightness.lua
parentac49ade9951b591e859a470803e166acfa2b7bf2 (diff)
Brightness widget - Use by default theme font
Diffstat (limited to 'brightness-widget/brightness.lua')
-rw-r--r--brightness-widget/brightness.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/brightness-widget/brightness.lua b/brightness-widget/brightness.lua
index 306cc2b..b9f07c9 100644
--- a/brightness-widget/brightness.lua
+++ b/brightness-widget/brightness.lua
@@ -13,6 +13,7 @@ local wibox = require("wibox")
local watch = require("awful.widget.watch")
local spawn = require("awful.spawn")
local naughty = require("naughty")
+local beautiful = require("beautiful")
local ICON_DIR = os.getenv("HOME") .. '/.config/awesome/awesome-wm-widgets/brightness-widget/'
local get_brightness_cmd
@@ -35,7 +36,7 @@ local function worker(user_args)
local type = args.type or 'arc' -- arc or icon_and_text
local path_to_icon = args.path_to_icon or ICON_DIR .. 'brightness.svg'
- local font = args.font or 'Play 9'
+ local font = args.font or beautiful.font
local timeout = args.timeout or 100
local program = args.program or 'light'