diff options
author | Shubham Pawar <31388020+shubham-cpp@users.noreply.github.com> | 2022-04-16 18:30:12 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 18:30:12 +0530 |
commit | fc7d966cb9f06eb2da2e8998402adc8663d831ee (patch) | |
tree | ed2bd23e6340aab609de1a881c30dadf5116250b /cmus-widget | |
parent | 6d1c05decca2fffe87863fceaa163a077360f21d (diff) | |
parent | 8439ca7930e73e17746a1d6f0610417e8a42865f (diff) |
Merge branch 'master' into update-brightnessctl
Diffstat (limited to 'cmus-widget')
-rw-r--r-- | cmus-widget/README.md | 2 | ||||
-rw-r--r-- | cmus-widget/cmus.lua | 19 |
2 files changed, 7 insertions, 14 deletions
diff --git a/cmus-widget/README.md b/cmus-widget/README.md index 7e7fb9e..eec5773 100644 --- a/cmus-widget/README.md +++ b/cmus-widget/README.md @@ -45,7 +45,7 @@ It is possible to customize the widget by providing a table with all or some of | Name | Default | Description | |---|---|---| -| `font` | `Play 9` | Font used for the track title | +| `font` | `beautiful.font` | Font name and size, like `Play 12` | | `path_to_icons` | `/usr/share/icons/Arc/actions/symbolic/` | Alternative path for the icons | | `timeout`| `10` | Refresh cooldown | | `space` | `3` | Space between icon and track title | diff --git a/cmus-widget/cmus.lua b/cmus-widget/cmus.lua index 51daa89..2ffa872 100644 --- a/cmus-widget/cmus.lua +++ b/cmus-widget/cmus.lua @@ -10,21 +10,14 @@ local awful = require("awful") local wibox = require("wibox") local watch = require("awful.widget.watch") local spawn = require("awful.spawn") -local naughty = require("naughty") +local beautiful = require('beautiful') local cmus_widget = {} -local function show_warning(message) - naughty.notify{ - preset = naughty.config.presets.critical, - title = "Cmus Widget", - text = message} -end - local function worker(user_args) local args = user_args or {} - local font = args.font or "Play 9" + local font = args.font or beautiful.font local path_to_icons = args.path_to_icons or "/usr/share/icons/Arc/actions/symbolic/" local timeout = args.timeout or 10 @@ -44,6 +37,7 @@ local function worker(user_args) font = font, widget = wibox.widget.textbox }, + spacing = space, layout = wibox.layout.fixed.horizontal, update_icon = function(self, name) self:get_children_by_id("playback_icon")[1]:set_image(path_to_icons .. name) @@ -53,7 +47,7 @@ local function worker(user_args) end } - function update_widget(widget, stdout, _, _, code) + local function update_widget(widget, stdout, _, _, code) if code == 0 then local cmus_info = {} @@ -63,12 +57,12 @@ local function worker(user_args) if key and val then cmus_info[key] = val else - local key, val = string.match(s, "^set (%a+) (.+)$") + key, val = string.match(s, "^set (%a+) (.+)$") if key and val then cmus_info[key] = val else - local key, val = string.match(s, "^(%a+) (.+)$") + key, val = string.match(s, "^(%a+) (.+)$") if key and val then cmus_info[key] = val end @@ -96,7 +90,6 @@ local function worker(user_args) widget.visible = true else widget.visible = false - widget.width = 0 end else widget.visible = false |