diff options
author | Neville Li <neville.lyh@gmail.com> | 2020-04-04 12:44:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-04 12:44:46 -0400 |
commit | cc600a9bfa8f44cea37f3f037a6448f8202a4924 (patch) | |
tree | 5bbeb0f6bbf9e5dddfc443c48359f2357969f21c | |
parent | 224c7a6acb2919d5c7f94bcfba95ac19692269d9 (diff) |
Fix display_notification setting in volume-widget
-rw-r--r-- | volume-widget/volume.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/volume-widget/volume.lua b/volume-widget/volume.lua index 04ac84f..652c39b 100644 --- a/volume-widget/volume.lua +++ b/volume-widget/volume.lua @@ -92,7 +92,7 @@ local function worker(args) local args = args or {} local volume_audio_controller = args.volume_audio_controller or 'pulse' - volume.display_notification = args.display_notification or 'false' + volume.display_notification = args.display_notification or false volume.position = args.notification_position or "top_right" if volume_audio_controller == 'pulse' then volume.device = '-D pulse' |