2009-02-27 17:22:03 +01:00
|
|
|
---------------------------------------------------------------------------
|
2016-08-14 06:25:50 +02:00
|
|
|
--- Tasklist widget module for awful.
|
2014-05-20 13:02:39 +02:00
|
|
|
--
|
2016-11-15 07:07:25 +01:00
|
|
|
-- <a name="status_icons"></a>
|
|
|
|
-- **Status icons:**
|
|
|
|
--
|
|
|
|
-- By default, the tasklist prepends some symbols in front of the client name.
|
|
|
|
-- This is used to notify that the client has some specific properties that are
|
|
|
|
-- currently enabled. This can be disabled using
|
|
|
|
-- `beautiful.tasklist_plain_task_name`=true in the theme.
|
|
|
|
--
|
|
|
|
-- <table class='widget_list' border=1>
|
|
|
|
-- <tr style='font-weight: bold;'>
|
|
|
|
-- <th align='center'>Icon</th>
|
|
|
|
-- <th align='center'>Client property</th>
|
|
|
|
-- </tr>
|
|
|
|
-- <tr><td>▪</td><td><a href="./client.html#client.sticky">sticky</a></td></tr>
|
|
|
|
-- <tr><td>⌃</td><td><a href="./client.html#client.ontop">ontop</a></td></tr>
|
|
|
|
-- <tr><td>▴</td><td><a href="./client.html#client.above">above</a></td></tr>
|
|
|
|
-- <tr><td>▾</td><td><a href="./client.html#client.below">below</a></td></tr>
|
|
|
|
-- <tr><td>✈</td><td><a href="./client.html#client.floating">floating</a></td></tr>
|
|
|
|
-- <tr><td>+</td><td><a href="./client.html#client.maximized">maximized</a></td></tr>
|
|
|
|
-- <tr><td>⬌</td><td><a href="./client.html#client.maximized_horizontal">maximized_horizontal</a></td></tr>
|
|
|
|
-- <tr><td>⬍</td><td><a href="./client.html#client.maximized_vertical">maximized_vertical</a></td></tr>
|
|
|
|
-- </table>
|
|
|
|
--
|
2017-08-10 06:32:30 +02:00
|
|
|
-- **Customizing the tasklist:**
|
|
|
|
--
|
|
|
|
-- The `tasklist` created by `rc.lua` use the default values for almost
|
|
|
|
-- everything. However, it is possible to override each aspects to create a
|
|
|
|
-- very different widget. Here's an example that create a tasklist similar to
|
|
|
|
-- the default one, but with an explicit layout and some spacing widgets:
|
|
|
|
--
|
|
|
|
--@DOC_wibox_awidget_tasklist_rounded_EXAMPLE@
|
|
|
|
--
|
|
|
|
-- As demonstrated in the example above, there are a few "shortcuts" to avoid
|
|
|
|
-- re-inventing the wheel. By setting the predefined roles as widget `id`s,
|
|
|
|
-- `awful.widget.common` will do most of the work to update the values
|
|
|
|
-- automatically. All of them are optional. The supported roles are:
|
|
|
|
--
|
|
|
|
-- * `icon_role`: A `wibox.widget.imagebox`
|
|
|
|
-- * `text_role`: A `wibox.widget.textbox`
|
|
|
|
-- * `background_role`: A `wibox.container.background`
|
|
|
|
-- * `text_margin_role`: A `wibox.container.margin`
|
|
|
|
-- * `icon_margin_role`: A `wibox.container.margin`
|
|
|
|
--
|
|
|
|
-- `awful.widget.common` also has 2 callbacks to give more control over the widget:
|
|
|
|
--
|
|
|
|
-- * `create_callback`: Called once after the widget instance is created
|
|
|
|
-- * `update_callback`: Called everytime the data is refreshed
|
|
|
|
--
|
|
|
|
-- Both callback have the same parameters:
|
|
|
|
--
|
|
|
|
-- * `self`: The widget instance (*widget*).
|
|
|
|
-- * `c`: The client (*client*)
|
|
|
|
-- * `index`: The widget position in the list (*number*)
|
|
|
|
-- * `clients`: The list of client, in order (*table*)
|
|
|
|
--
|
|
|
|
-- It is also possible to omit some roles and create an icon only tasklist.
|
|
|
|
-- Notice that this example use the `awful.widget.clienticon` widget instead
|
|
|
|
-- of an `imagebox`. This allows higher resoluton icons to be loaded. This
|
|
|
|
-- example reproduces the Windows 10 tasklist look and feel:
|
|
|
|
--
|
|
|
|
--@DOC_wibox_awidget_tasklist_windows10_EXAMPLE@
|
|
|
|
--
|
|
|
|
-- The tasklist can also be created in an `awful.popup` in case there is no
|
|
|
|
-- permanent `awful.wibar`:
|
|
|
|
--
|
|
|
|
--@DOC_awful_popup_alttab_EXAMPLE@
|
|
|
|
--
|
2009-02-27 17:22:03 +01:00
|
|
|
-- @author Julien Danjou <julien@danjou.info>
|
|
|
|
-- @copyright 2008-2009 Julien Danjou
|
2014-05-20 13:02:39 +02:00
|
|
|
-- @classmod awful.widget.tasklist
|
2009-02-27 17:22:03 +01:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-- Grab environment we need
|
|
|
|
local capi = { screen = screen,
|
|
|
|
client = client }
|
|
|
|
local ipairs = ipairs
|
2009-04-11 14:15:45 +02:00
|
|
|
local setmetatable = setmetatable
|
2009-02-27 17:22:03 +01:00
|
|
|
local table = table
|
|
|
|
local common = require("awful.widget.common")
|
|
|
|
local beautiful = require("beautiful")
|
2009-08-18 16:48:19 +02:00
|
|
|
local tag = require("awful.tag")
|
2010-10-06 14:23:36 +02:00
|
|
|
local flex = require("wibox.layout.flex")
|
2015-07-07 18:07:59 +02:00
|
|
|
local timer = require("gears.timer")
|
2017-03-03 00:02:03 +01:00
|
|
|
local gcolor = require("gears.color")
|
2017-03-12 00:57:32 +01:00
|
|
|
local gstring = require("gears.string")
|
2017-08-08 00:14:35 +02:00
|
|
|
local gdebug = require("gears.debug")
|
|
|
|
local base = require("wibox.widget.base")
|
2009-02-27 17:22:03 +01:00
|
|
|
|
2016-02-26 19:19:58 +01:00
|
|
|
local function get_screen(s)
|
|
|
|
return s and screen[s]
|
|
|
|
end
|
|
|
|
|
2012-06-14 01:08:27 +02:00
|
|
|
local tasklist = { mt = {} }
|
2009-02-27 17:22:03 +01:00
|
|
|
|
2015-09-27 14:10:45 +02:00
|
|
|
local instances
|
|
|
|
|
2016-08-14 06:25:50 +02:00
|
|
|
--- The default foreground (text) color.
|
|
|
|
-- @beautiful beautiful.tasklist_fg_normal
|
|
|
|
-- @tparam[opt=nil] string|pattern fg_normal
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The default background color.
|
|
|
|
-- @beautiful beautiful.tasklist_bg_normal
|
|
|
|
-- @tparam[opt=nil] string|pattern bg_normal
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The focused client foreground (text) color.
|
|
|
|
-- @beautiful beautiful.tasklist_fg_focus
|
|
|
|
-- @tparam[opt=nil] string|pattern fg_focus
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The focused client background color.
|
|
|
|
-- @beautiful beautiful.tasklist_bg_focus
|
|
|
|
-- @tparam[opt=nil] string|pattern bg_focus
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The urgent clients foreground (text) color.
|
|
|
|
-- @beautiful beautiful.tasklist_fg_urgent
|
|
|
|
-- @tparam[opt=nil] string|pattern fg_urgent
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The urgent clients background color.
|
|
|
|
-- @beautiful beautiful.tasklist_bg_urgent
|
|
|
|
-- @tparam[opt=nil] string|pattern bg_urgent
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The minimized clients foreground (text) color.
|
|
|
|
-- @beautiful beautiful.tasklist_fg_minimize
|
|
|
|
-- @tparam[opt=nil] string|pattern fg_minimize
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The minimized clients background color.
|
|
|
|
-- @beautiful beautiful.tasklist_bg_minimize
|
|
|
|
-- @tparam[opt=nil] string|pattern bg_minimize
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The elements default background image.
|
|
|
|
-- @beautiful beautiful.tasklist_bg_image_normal
|
|
|
|
-- @tparam[opt=nil] string bg_image_normal
|
|
|
|
|
|
|
|
--- The focused client background image.
|
|
|
|
-- @beautiful beautiful.tasklist_bg_image_focus
|
|
|
|
-- @tparam[opt=nil] string bg_image_focus
|
|
|
|
|
|
|
|
--- The urgent clients background image.
|
|
|
|
-- @beautiful beautiful.tasklist_bg_image_urgent
|
|
|
|
-- @tparam[opt=nil] string bg_image_urgent
|
|
|
|
|
|
|
|
--- The minimized clients background image.
|
|
|
|
-- @beautiful beautiful.tasklist_bg_image_minimize
|
|
|
|
-- @tparam[opt=nil] string bg_image_minimize
|
|
|
|
|
2016-11-15 07:07:25 +01:00
|
|
|
--- Disable the tasklist client icons.
|
2016-12-28 22:25:23 +01:00
|
|
|
-- @beautiful beautiful.tasklist_disable_icon
|
2016-08-14 06:25:50 +02:00
|
|
|
-- @tparam[opt=false] boolean tasklist_disable_icon
|
|
|
|
|
2017-02-26 01:21:36 +01:00
|
|
|
--- Disable the tasklist client titles.
|
|
|
|
-- @beautiful beautiful.tasklist_disable_task_name
|
|
|
|
-- @tparam[opt=false] boolean tasklist_disable_task_name
|
|
|
|
|
2016-11-15 07:07:25 +01:00
|
|
|
--- Disable the extra tasklist client property notification icons.
|
|
|
|
--
|
|
|
|
-- See the <a href="status_icons">Status icons</a> section for more details.
|
|
|
|
--
|
|
|
|
-- @beautiful beautiful.tasklist_plain_task_name
|
|
|
|
-- @tparam[opt=false] boolean tasklist_plain_task_name
|
|
|
|
|
2016-08-14 06:25:50 +02:00
|
|
|
--- The tasklist font.
|
|
|
|
-- @beautiful beautiful.tasklist_font
|
|
|
|
-- @tparam[opt=nil] string font
|
|
|
|
|
|
|
|
--- The focused client alignment.
|
|
|
|
-- @beautiful beautiful.tasklist_align
|
|
|
|
-- @tparam[opt=left] string align *left*, *right* or *center*
|
|
|
|
|
|
|
|
--- The focused client title alignment.
|
|
|
|
-- @beautiful beautiful.tasklist_font_focus
|
|
|
|
-- @tparam[opt=nil] string font_focus
|
|
|
|
|
|
|
|
--- The minimized clients font.
|
|
|
|
-- @beautiful beautiful.tasklist_font_minimized
|
|
|
|
-- @tparam[opt=nil] string font_minimized
|
|
|
|
|
|
|
|
--- The urgent clients font.
|
|
|
|
-- @beautiful beautiful.tasklist_font_urgent
|
|
|
|
-- @tparam[opt=nil] string font_urgent
|
|
|
|
|
|
|
|
--- The space between the tasklist elements.
|
|
|
|
-- @beautiful beautiful.tasklist_spacing
|
2017-01-16 08:11:42 +01:00
|
|
|
-- @tparam[opt=0] number spacing The spacing between tasks.
|
2016-08-14 06:25:50 +02:00
|
|
|
|
|
|
|
--- The default tasklist elements shape.
|
|
|
|
-- @beautiful beautiful.tasklist_shape
|
|
|
|
-- @tparam[opt=nil] gears.shape shape
|
|
|
|
|
|
|
|
--- The default tasklist elements border width.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_border_width
|
|
|
|
-- @tparam[opt=0] number shape_border_width
|
|
|
|
|
|
|
|
--- The default tasklist elements border color.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_border_color
|
|
|
|
-- @tparam[opt=nil] string|color shape_border_color
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The focused client shape.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_focus
|
|
|
|
-- @tparam[opt=nil] gears.shape shape_focus
|
|
|
|
|
|
|
|
--- The focused client border width.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_border_width_focus
|
|
|
|
-- @tparam[opt=0] number shape_border_width_focus
|
|
|
|
|
|
|
|
--- The focused client border color.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_border_color_focus
|
|
|
|
-- @tparam[opt=nil] string|color shape_border_color_focus
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The minimized clients shape.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_minimized
|
|
|
|
-- @tparam[opt=nil] gears.shape shape_minimized
|
|
|
|
|
|
|
|
--- The minimized clients border width.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_border_width_minimized
|
|
|
|
-- @tparam[opt=0] number shape_border_width_minimized
|
|
|
|
|
|
|
|
--- The minimized clients border color.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_border_color_minimized
|
|
|
|
-- @tparam[opt=nil] string|color shape_border_color_minimized
|
|
|
|
-- @see gears.color
|
|
|
|
|
|
|
|
--- The urgent clients shape.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_urgent
|
|
|
|
-- @tparam[opt=nil] gears.shape shape_urgent
|
|
|
|
|
|
|
|
--- The urgent clients border width.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_border_width_urgent
|
|
|
|
-- @tparam[opt=0] number shape_border_width_urgent
|
|
|
|
|
|
|
|
--- The urgent clients border color.
|
|
|
|
-- @beautiful beautiful.tasklist_shape_border_color_urgent
|
|
|
|
-- @tparam[opt=nil] string|color shape_border_color_urgent
|
|
|
|
-- @see gears.color
|
|
|
|
|
2009-02-27 17:22:03 +01:00
|
|
|
-- Public structures
|
2012-06-14 01:08:27 +02:00
|
|
|
tasklist.filter = {}
|
2009-02-27 17:22:03 +01:00
|
|
|
|
2015-07-13 23:47:37 +02:00
|
|
|
local function tasklist_label(c, args, tb)
|
2009-02-27 17:22:03 +01:00
|
|
|
if not args then args = {} end
|
|
|
|
local theme = beautiful.get()
|
2016-09-02 18:14:43 +02:00
|
|
|
local align = args.align or theme.tasklist_align or "left"
|
2017-03-03 00:02:03 +01:00
|
|
|
local fg_normal = gcolor.ensure_pango_color(args.fg_normal or theme.tasklist_fg_normal or theme.fg_normal, "white")
|
2013-11-18 15:19:54 +01:00
|
|
|
local bg_normal = args.bg_normal or theme.tasklist_bg_normal or theme.bg_normal or "#000000"
|
2017-03-03 00:02:03 +01:00
|
|
|
local fg_focus = gcolor.ensure_pango_color(args.fg_focus or theme.tasklist_fg_focus or theme.fg_focus, fg_normal)
|
2015-07-11 00:11:45 +02:00
|
|
|
local bg_focus = args.bg_focus or theme.tasklist_bg_focus or theme.bg_focus or bg_normal
|
2017-03-03 00:02:03 +01:00
|
|
|
local fg_urgent = gcolor.ensure_pango_color(args.fg_urgent or theme.tasklist_fg_urgent or theme.fg_urgent,
|
2017-03-03 23:11:06 +01:00
|
|
|
fg_normal)
|
2017-03-03 00:02:03 +01:00
|
|
|
local bg_urgent = args.bg_urgent or theme.tasklist_bg_urgent or theme.bg_urgent or bg_normal
|
|
|
|
local fg_minimize = gcolor.ensure_pango_color(args.fg_minimize or theme.tasklist_fg_minimize or theme.fg_minimize,
|
|
|
|
fg_normal)
|
2015-07-11 00:11:45 +02:00
|
|
|
local bg_minimize = args.bg_minimize or theme.tasklist_bg_minimize or theme.bg_minimize or bg_normal
|
2017-01-16 08:58:26 +01:00
|
|
|
-- FIXME v5, remove the fallback theme.bg_image_* variables, see GH#1403
|
|
|
|
local bg_image_normal = args.bg_image_normal or theme.tasklist_bg_image_normal or theme.bg_image_normal
|
|
|
|
local bg_image_focus = args.bg_image_focus or theme.tasklist_bg_image_focus or theme.bg_image_focus
|
|
|
|
local bg_image_urgent = args.bg_image_urgent or theme.tasklist_bg_image_urgent or theme.bg_image_urgent
|
|
|
|
local bg_image_minimize = args.bg_image_minimize or theme.tasklist_bg_image_minimize or theme.bg_image_minimize
|
2013-01-04 03:00:33 +01:00
|
|
|
local tasklist_disable_icon = args.tasklist_disable_icon or theme.tasklist_disable_icon or false
|
2017-02-26 01:21:36 +01:00
|
|
|
local disable_task_name = args.disable_task_name or theme.tasklist_disable_task_name or false
|
2009-02-27 17:22:03 +01:00
|
|
|
local font = args.font or theme.tasklist_font or theme.font or ""
|
2015-07-13 23:47:37 +02:00
|
|
|
local font_focus = args.font_focus or theme.tasklist_font_focus or theme.font_focus or font or ""
|
|
|
|
local font_minimized = args.font_minimized or theme.tasklist_font_minimized or theme.font_minimized or font or ""
|
|
|
|
local font_urgent = args.font_urgent or theme.tasklist_font_urgent or theme.font_urgent or font or ""
|
|
|
|
local text = ""
|
2009-10-03 09:59:27 +02:00
|
|
|
local name = ""
|
2016-02-07 15:12:22 +01:00
|
|
|
local bg
|
|
|
|
local bg_image
|
2016-08-05 07:47:14 +02:00
|
|
|
local shape = args.shape or theme.tasklist_shape
|
|
|
|
local shape_border_width = args.shape_border_width or theme.tasklist_shape_border_width
|
|
|
|
local shape_border_color = args.shape_border_color or theme.tasklist_shape_border_color
|
2012-01-05 19:31:27 +01:00
|
|
|
|
|
|
|
-- symbol to use to indicate certain client properties
|
2012-01-05 20:24:33 +01:00
|
|
|
local sticky = args.sticky or theme.tasklist_sticky or "▪"
|
2012-01-05 19:31:27 +01:00
|
|
|
local ontop = args.ontop or theme.tasklist_ontop or '⌃'
|
2015-07-17 17:06:43 +02:00
|
|
|
local above = args.above or theme.tasklist_above or '▴'
|
|
|
|
local below = args.below or theme.tasklist_below or '▾'
|
2012-01-05 19:31:27 +01:00
|
|
|
local floating = args.floating or theme.tasklist_floating or '✈'
|
2014-09-02 22:07:53 +02:00
|
|
|
local maximized = args.maximized or theme.tasklist_maximized or '<b>+</b>'
|
2012-01-05 19:31:27 +01:00
|
|
|
local maximized_horizontal = args.maximized_horizontal or theme.tasklist_maximized_horizontal or '⬌'
|
|
|
|
local maximized_vertical = args.maximized_vertical or theme.tasklist_maximized_vertical or '⬍'
|
|
|
|
|
2017-08-10 06:32:30 +02:00
|
|
|
if tb then
|
|
|
|
tb:set_align(align)
|
|
|
|
end
|
2016-09-02 18:14:43 +02:00
|
|
|
|
2013-01-05 16:51:13 +01:00
|
|
|
if not theme.tasklist_plain_task_name then
|
|
|
|
if c.sticky then name = name .. sticky end
|
2015-07-17 17:06:43 +02:00
|
|
|
|
|
|
|
if c.ontop then name = name .. ontop
|
|
|
|
elseif c.above then name = name .. above
|
|
|
|
elseif c.below then name = name .. below end
|
|
|
|
|
2014-09-02 22:07:53 +02:00
|
|
|
if c.maximized then
|
|
|
|
name = name .. maximized
|
|
|
|
else
|
|
|
|
if c.maximized_horizontal then name = name .. maximized_horizontal end
|
|
|
|
if c.maximized_vertical then name = name .. maximized_vertical end
|
2016-03-14 07:21:29 +01:00
|
|
|
if c.floating then name = name .. floating end
|
2014-09-02 22:07:53 +02:00
|
|
|
end
|
2013-01-05 16:51:13 +01:00
|
|
|
end
|
|
|
|
|
2017-02-26 01:21:36 +01:00
|
|
|
if not disable_task_name then
|
|
|
|
if c.minimized then
|
2017-03-12 00:57:32 +01:00
|
|
|
name = name .. (gstring.xml_escape(c.icon_name) or gstring.xml_escape(c.name) or
|
|
|
|
gstring.xml_escape("<untitled>"))
|
2017-02-26 01:21:36 +01:00
|
|
|
else
|
2017-03-12 00:57:32 +01:00
|
|
|
name = name .. (gstring.xml_escape(c.name) or gstring.xml_escape("<untitled>"))
|
2017-02-26 01:21:36 +01:00
|
|
|
end
|
2009-02-27 17:22:03 +01:00
|
|
|
end
|
2016-03-14 07:21:29 +01:00
|
|
|
|
2015-03-29 20:20:53 +02:00
|
|
|
local focused = capi.client.focus == c
|
|
|
|
-- Handle transient_for: the first parent that does not skip the taskbar
|
|
|
|
-- is considered to be focused, if the real client has skip_taskbar.
|
|
|
|
if not focused and capi.client.focus and capi.client.focus.skip_taskbar
|
2016-04-17 14:30:39 +02:00
|
|
|
and capi.client.focus:get_transient_for_matching(function(cl)
|
|
|
|
return not cl.skip_taskbar
|
|
|
|
end) == c then
|
2015-03-29 20:20:53 +02:00
|
|
|
focused = true
|
|
|
|
end
|
2016-03-14 07:21:29 +01:00
|
|
|
|
2015-03-29 20:20:53 +02:00
|
|
|
if focused then
|
2009-02-27 17:22:03 +01:00
|
|
|
bg = bg_focus
|
2015-07-11 00:11:45 +02:00
|
|
|
text = text .. "<span color='"..fg_focus.."'>"..name.."</span>"
|
2013-01-04 03:00:33 +01:00
|
|
|
bg_image = bg_image_focus
|
2015-07-13 23:47:37 +02:00
|
|
|
font = font_focus
|
2016-08-05 07:47:14 +02:00
|
|
|
|
|
|
|
if args.shape_focus or theme.tasklist_shape_focus then
|
|
|
|
shape = args.shape_focus or theme.tasklist_shape_focus
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.shape_border_width_focus or theme.tasklist_shape_border_width_focus then
|
|
|
|
shape_border_width = args.shape_border_width_focus or theme.tasklist_shape_border_width_focus
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.shape_border_color_focus or theme.tasklist_shape_border_color_focus then
|
|
|
|
shape_border_color = args.shape_border_color_focus or theme.tasklist_shape_border_color_focus
|
|
|
|
end
|
2015-07-11 00:11:45 +02:00
|
|
|
elseif c.urgent then
|
2009-02-27 17:22:03 +01:00
|
|
|
bg = bg_urgent
|
2015-07-11 00:11:45 +02:00
|
|
|
text = text .. "<span color='"..fg_urgent.."'>"..name.."</span>"
|
2013-01-04 03:00:33 +01:00
|
|
|
bg_image = bg_image_urgent
|
2015-07-13 23:47:37 +02:00
|
|
|
font = font_urgent
|
2016-08-05 07:47:14 +02:00
|
|
|
|
|
|
|
if args.shape_urgent or theme.tasklist_shape_urgent then
|
|
|
|
shape = args.shape_urgent or theme.tasklist_shape_urgent
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.shape_border_width_urgent or theme.tasklist_shape_border_width_urgent then
|
|
|
|
shape_border_width = args.shape_border_width_urgent or theme.tasklist_shape_border_width_urgent
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.shape_border_color_urgent or theme.tasklist_shape_border_color_urgent then
|
|
|
|
shape_border_color = args.shape_border_color_urgent or theme.tasklist_shape_border_color_urgent
|
|
|
|
end
|
2015-07-11 00:11:45 +02:00
|
|
|
elseif c.minimized then
|
2009-02-27 17:22:03 +01:00
|
|
|
bg = bg_minimize
|
2015-07-11 00:11:45 +02:00
|
|
|
text = text .. "<span color='"..fg_minimize.."'>"..name.."</span>"
|
2013-01-04 03:00:33 +01:00
|
|
|
bg_image = bg_image_minimize
|
2015-07-13 23:47:37 +02:00
|
|
|
font = font_minimized
|
2016-08-05 07:47:14 +02:00
|
|
|
|
|
|
|
if args.shape_minimized or theme.tasklist_shape_minimized then
|
|
|
|
shape = args.shape_minimized or theme.tasklist_shape_minimized
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.shape_border_width_minimized or theme.tasklist_shape_border_width_minimized then
|
|
|
|
shape_border_width = args.shape_border_width_minimized or theme.tasklist_shape_border_width_minimized
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.shape_border_color_minimized or theme.tasklist_shape_border_color_minimized then
|
|
|
|
shape_border_color = args.shape_border_color_minimized or theme.tasklist_shape_border_color_minimized
|
|
|
|
end
|
2009-02-27 17:22:03 +01:00
|
|
|
else
|
2011-10-11 22:24:44 +02:00
|
|
|
bg = bg_normal
|
2015-07-11 00:11:45 +02:00
|
|
|
text = text .. "<span color='"..fg_normal.."'>"..name.."</span>"
|
2013-01-04 03:00:33 +01:00
|
|
|
bg_image = bg_image_normal
|
2009-02-27 17:22:03 +01:00
|
|
|
end
|
2017-08-10 06:32:30 +02:00
|
|
|
|
|
|
|
if tb then
|
|
|
|
tb:set_font(font)
|
|
|
|
end
|
2016-08-05 07:47:14 +02:00
|
|
|
|
|
|
|
local other_args = {
|
|
|
|
shape = shape,
|
|
|
|
shape_border_width = shape_border_width,
|
|
|
|
shape_border_color = shape_border_color,
|
|
|
|
}
|
|
|
|
|
|
|
|
return text, bg, bg_image, not tasklist_disable_icon and c.icon or nil, other_args
|
2009-02-27 17:22:03 +01:00
|
|
|
end
|
|
|
|
|
2017-08-10 06:32:30 +02:00
|
|
|
local function tasklist_update(s, w, buttons, filter, data, style, update_function, args)
|
2009-10-24 14:53:01 +02:00
|
|
|
local clients = {}
|
2016-02-07 15:12:22 +01:00
|
|
|
for _, c in ipairs(capi.client.get()) do
|
2009-10-24 14:53:01 +02:00
|
|
|
if not (c.skip_taskbar or c.hidden
|
|
|
|
or c.type == "splash" or c.type == "dock" or c.type == "desktop")
|
|
|
|
and filter(c, s) then
|
|
|
|
table.insert(clients, c)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-13 23:47:37 +02:00
|
|
|
local function label(c, tb) return tasklist_label(c, style, tb) end
|
2009-10-24 14:53:01 +02:00
|
|
|
|
2017-08-10 06:32:30 +02:00
|
|
|
update_function(w, buttons, label, data, clients, args)
|
2009-10-24 14:53:01 +02:00
|
|
|
end
|
|
|
|
|
2017-08-08 00:14:35 +02:00
|
|
|
--- Create a new tasklist widget.
|
|
|
|
-- The last two arguments (update_function
|
|
|
|
-- and layout) serve to customize the layout of the tasklist (eg. to
|
2013-01-05 16:12:51 +01:00
|
|
|
-- make it vertical). For that, you will need to copy the
|
|
|
|
-- awful.widget.common.list_update function, make your changes to it
|
2017-08-08 00:14:35 +02:00
|
|
|
-- and pass it as update_function here. Also change the layout if the
|
2013-01-05 16:12:51 +01:00
|
|
|
-- default is not what you want.
|
2017-08-08 00:14:35 +02:00
|
|
|
--
|
|
|
|
-- @tparam table args
|
|
|
|
-- @tparam screen args.screen The screen to draw tasklist for.
|
|
|
|
-- @tparam function args.filter Filter function to define what clients will be listed.
|
|
|
|
-- @tparam table args.buttons A table with buttons binding to set.
|
|
|
|
-- @tparam[opt] function args.update_function Function to create a tag widget on each
|
2015-02-26 16:06:19 +01:00
|
|
|
-- update. See `awful.widget.common.list_update`.
|
2017-08-08 00:14:35 +02:00
|
|
|
-- @tparam[opt] table args.layout Container widget for tag widgets. Default
|
2015-02-26 16:06:19 +01:00
|
|
|
-- is `wibox.layout.flex.horizontal`.
|
2018-04-22 08:04:01 +02:00
|
|
|
-- @tparam[opt] table args.widget_template A custom widget to be used for each client
|
2017-08-08 00:14:35 +02:00
|
|
|
-- @tparam[opt={}] table args.style The style overrides default theme.
|
|
|
|
-- @tparam[opt=nil] string|pattern args.style.fg_normal
|
|
|
|
-- @tparam[opt=nil] string|pattern args.style.bg_normal
|
|
|
|
-- @tparam[opt=nil] string|pattern args.style.fg_focus
|
|
|
|
-- @tparam[opt=nil] string|pattern args.style.bg_focus
|
|
|
|
-- @tparam[opt=nil] string|pattern args.style.fg_urgent
|
|
|
|
-- @tparam[opt=nil] string|pattern args.style.bg_urgent
|
|
|
|
-- @tparam[opt=nil] string|pattern args.style.fg_minimize
|
|
|
|
-- @tparam[opt=nil] string|pattern args.style.bg_minimize
|
|
|
|
-- @tparam[opt=nil] string args.style.bg_image_normal
|
|
|
|
-- @tparam[opt=nil] string args.style.bg_image_focus
|
|
|
|
-- @tparam[opt=nil] string args.style.bg_image_urgent
|
|
|
|
-- @tparam[opt=nil] string args.style.bg_image_minimize
|
|
|
|
-- @tparam[opt=nil] boolean args.style.tasklist_disable_icon
|
|
|
|
-- @tparam[opt=false] boolean args.style.disable_task_name
|
|
|
|
-- @tparam[opt=nil] string args.style.font
|
|
|
|
-- @tparam[opt=left] string args.style.align *left*, *right* or *center*
|
|
|
|
-- @tparam[opt=nil] string args.style.font_focus
|
|
|
|
-- @tparam[opt=nil] string args.style.font_minimized
|
|
|
|
-- @tparam[opt=nil] string args.style.font_urgent
|
|
|
|
-- @tparam[opt=nil] number args.style.spacing The spacing between tags.
|
|
|
|
-- @tparam[opt=nil] gears.shape args.style.shape
|
|
|
|
-- @tparam[opt=nil] number args.style.shape_border_width
|
|
|
|
-- @tparam[opt=nil] string|color args.style.shape_border_color
|
|
|
|
-- @tparam[opt=nil] gears.shape args.style.shape_focus
|
|
|
|
-- @tparam[opt=nil] number args.style.shape_border_width_focus
|
|
|
|
-- @tparam[opt=nil] string|color args.style.shape_border_color_focus
|
|
|
|
-- @tparam[opt=nil] gears.shape args.style.shape_minimized
|
|
|
|
-- @tparam[opt=nil] number args.style.shape_border_width_minimized
|
|
|
|
-- @tparam[opt=nil] string|color args.style.shape_border_color_minimized
|
|
|
|
-- @tparam[opt=nil] gears.shape args.style.shape_urgent
|
|
|
|
-- @tparam[opt=nil] number args.style.shape_border_width_urgent
|
|
|
|
-- @tparam[opt=nil] string|color args.style.shape_border_color_urgent
|
|
|
|
-- @param filter **DEPRECATED** use args.filter
|
|
|
|
-- @param buttons **DEPRECATED** use args.buttons
|
|
|
|
-- @param style **DEPRECATED** use args.style
|
|
|
|
-- @param update_function **DEPRECATED** use args.update_function
|
|
|
|
-- @param base_widget **DEPRECATED** use args.base_widget
|
2016-09-04 08:24:29 +02:00
|
|
|
-- @function awful.tasklist
|
2017-08-08 00:14:35 +02:00
|
|
|
function tasklist.new(args, filter, buttons, style, update_function, base_widget)
|
|
|
|
local screen = nil
|
|
|
|
|
|
|
|
local argstype = type(args)
|
|
|
|
|
|
|
|
-- Detect the old function signature
|
|
|
|
if argstype == "number" or argstype == "screen" or
|
|
|
|
(argstype == "table" and args.index and args == capi.screen[args.index]) then
|
|
|
|
gdebug.deprecate("The `screen` paramater is deprecated, use `args.screen`.",
|
|
|
|
{deprecated_in=5})
|
|
|
|
|
|
|
|
screen = get_screen(args)
|
|
|
|
args = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
assert(type(args) == "table")
|
|
|
|
|
|
|
|
for k, v in pairs { filter = filter,
|
|
|
|
buttons = buttons,
|
|
|
|
style = style,
|
|
|
|
update_function = update_function,
|
|
|
|
layout = base_widget
|
|
|
|
} do
|
|
|
|
gdebug.deprecate("The `awful.widget.tasklist()` `"..k
|
|
|
|
.."` paramater is deprecated, use `args."..k.."`.",
|
|
|
|
{deprecated_in=5})
|
|
|
|
args[k] = v
|
|
|
|
end
|
|
|
|
|
|
|
|
screen = screen or get_screen(args.screen)
|
|
|
|
local uf = args.update_function or common.list_update
|
|
|
|
local w = base.make_widget_from_value(args.layout or flex.horizontal)
|
2009-10-24 14:53:01 +02:00
|
|
|
|
2011-10-04 13:55:59 +02:00
|
|
|
local data = setmetatable({}, { __mode = 'k' })
|
2015-07-07 18:07:59 +02:00
|
|
|
|
2018-04-30 02:12:04 +02:00
|
|
|
local spacing = args.style and args.style.spacing or args.layout and args.layout.spacing
|
|
|
|
or beautiful.tasklist_spacing
|
|
|
|
if w.set_spacing and spacing then
|
|
|
|
w:set_spacing(spacing)
|
2016-08-05 07:34:55 +02:00
|
|
|
end
|
|
|
|
|
2015-07-07 18:07:59 +02:00
|
|
|
local queued_update = false
|
2017-08-09 06:19:03 +02:00
|
|
|
|
|
|
|
-- For the tests
|
|
|
|
function w._do_tasklist_update_now()
|
|
|
|
queued_update = false
|
|
|
|
if screen.valid then
|
2017-08-10 06:32:30 +02:00
|
|
|
tasklist_update(screen, w, args.buttons, args.filter, data, args.style, uf, args)
|
2017-08-09 06:19:03 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-27 14:10:45 +02:00
|
|
|
function w._do_tasklist_update()
|
2015-07-07 18:07:59 +02:00
|
|
|
-- Add a delayed callback for the first update.
|
|
|
|
if not queued_update then
|
2017-08-09 06:19:03 +02:00
|
|
|
timer.delayed_call(w._do_tasklist_update_now)
|
2015-07-07 18:07:59 +02:00
|
|
|
queued_update = true
|
|
|
|
end
|
|
|
|
end
|
2016-01-24 16:28:07 +01:00
|
|
|
function w._unmanage(c)
|
|
|
|
data[c] = nil
|
|
|
|
end
|
2015-09-27 14:10:45 +02:00
|
|
|
if instances == nil then
|
2016-04-17 15:37:00 +02:00
|
|
|
instances = setmetatable({}, { __mode = "k" })
|
2015-09-27 14:10:45 +02:00
|
|
|
local function us(s)
|
2016-02-26 19:19:58 +01:00
|
|
|
local i = instances[get_screen(s)]
|
2015-09-27 14:10:45 +02:00
|
|
|
if i then
|
|
|
|
for _, tlist in pairs(i) do
|
|
|
|
tlist._do_tasklist_update()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local function u()
|
2015-11-19 20:13:37 +01:00
|
|
|
for s in pairs(instances) do
|
2016-05-01 19:39:28 +02:00
|
|
|
if s.valid then
|
|
|
|
us(s)
|
|
|
|
end
|
2015-09-27 14:10:45 +02:00
|
|
|
end
|
2015-03-17 17:11:40 +01:00
|
|
|
end
|
2015-09-27 14:10:45 +02:00
|
|
|
|
|
|
|
tag.attached_connect_signal(nil, "property::selected", u)
|
|
|
|
tag.attached_connect_signal(nil, "property::activated", u)
|
|
|
|
capi.client.connect_signal("property::urgent", u)
|
|
|
|
capi.client.connect_signal("property::sticky", u)
|
|
|
|
capi.client.connect_signal("property::ontop", u)
|
|
|
|
capi.client.connect_signal("property::above", u)
|
|
|
|
capi.client.connect_signal("property::below", u)
|
|
|
|
capi.client.connect_signal("property::floating", u)
|
|
|
|
capi.client.connect_signal("property::maximized_horizontal", u)
|
|
|
|
capi.client.connect_signal("property::maximized_vertical", u)
|
2017-01-24 10:19:45 +01:00
|
|
|
capi.client.connect_signal("property::maximized", u)
|
2015-09-27 14:10:45 +02:00
|
|
|
capi.client.connect_signal("property::minimized", u)
|
|
|
|
capi.client.connect_signal("property::name", u)
|
|
|
|
capi.client.connect_signal("property::icon_name", u)
|
|
|
|
capi.client.connect_signal("property::icon", u)
|
|
|
|
capi.client.connect_signal("property::skip_taskbar", u)
|
|
|
|
capi.client.connect_signal("property::screen", function(c, old_screen)
|
|
|
|
us(c.screen)
|
|
|
|
us(old_screen)
|
|
|
|
end)
|
|
|
|
capi.client.connect_signal("property::hidden", u)
|
|
|
|
capi.client.connect_signal("tagged", u)
|
|
|
|
capi.client.connect_signal("untagged", u)
|
2016-01-24 16:28:07 +01:00
|
|
|
capi.client.connect_signal("unmanage", function(c)
|
|
|
|
u(c)
|
2016-02-12 09:08:21 +01:00
|
|
|
for _, i in pairs(instances) do
|
2016-01-24 16:28:07 +01:00
|
|
|
for _, tlist in pairs(i) do
|
|
|
|
tlist._unmanage(c)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
2015-09-27 14:10:45 +02:00
|
|
|
capi.client.connect_signal("list", u)
|
|
|
|
capi.client.connect_signal("focus", u)
|
|
|
|
capi.client.connect_signal("unfocus", u)
|
2016-05-01 19:39:28 +02:00
|
|
|
capi.screen.connect_signal("removed", function(s)
|
|
|
|
instances[get_screen(s)] = nil
|
|
|
|
end)
|
2015-09-27 14:10:45 +02:00
|
|
|
end
|
|
|
|
w._do_tasklist_update()
|
2015-11-19 20:11:42 +01:00
|
|
|
local list = instances[screen]
|
2015-09-27 14:10:45 +02:00
|
|
|
if not list then
|
|
|
|
list = setmetatable({}, { __mode = "v" })
|
|
|
|
instances[screen] = list
|
|
|
|
end
|
|
|
|
table.insert(list, w)
|
2009-10-24 14:53:01 +02:00
|
|
|
return w
|
2009-02-27 17:22:03 +01:00
|
|
|
end
|
|
|
|
|
2009-10-24 14:53:01 +02:00
|
|
|
--- Filtering function to include all clients.
|
|
|
|
-- @return true
|
2018-08-18 21:47:56 +02:00
|
|
|
-- @filterfunction awful.tasklist.filter.allscreen
|
2016-02-07 15:12:22 +01:00
|
|
|
function tasklist.filter.allscreen()
|
2009-10-24 14:53:01 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Filtering function to include the clients from all tags on the screen.
|
|
|
|
-- @param c The client.
|
|
|
|
-- @param screen The screen we are drawing on.
|
|
|
|
-- @return true if c is on screen, false otherwise
|
2018-08-18 21:47:56 +02:00
|
|
|
-- @filterfunction awful.tasklist.filter.alltags
|
2012-06-14 01:08:27 +02:00
|
|
|
function tasklist.filter.alltags(c, screen)
|
2009-02-27 17:22:03 +01:00
|
|
|
-- Only print client on the same screen as this widget
|
2016-02-26 19:19:58 +01:00
|
|
|
return get_screen(c.screen) == get_screen(screen)
|
2009-02-27 17:22:03 +01:00
|
|
|
end
|
|
|
|
|
2009-10-24 14:53:01 +02:00
|
|
|
--- Filtering function to include only the clients from currently selected tags.
|
2009-02-27 17:22:03 +01:00
|
|
|
-- @param c The client.
|
|
|
|
-- @param screen The screen we are drawing on.
|
2009-10-24 14:53:01 +02:00
|
|
|
-- @return true if c is in a selected tag on screen, false otherwise
|
2018-08-18 21:47:56 +02:00
|
|
|
-- @filterfunction awful.tasklist.filter.currenttags
|
2012-06-14 01:08:27 +02:00
|
|
|
function tasklist.filter.currenttags(c, screen)
|
2016-02-26 19:19:58 +01:00
|
|
|
screen = get_screen(screen)
|
2009-02-27 17:22:03 +01:00
|
|
|
-- Only print client on the same screen as this widget
|
2016-02-26 19:19:58 +01:00
|
|
|
if get_screen(c.screen) ~= screen then return false end
|
2009-03-25 14:51:14 +01:00
|
|
|
-- Include sticky client too
|
2009-10-24 14:53:01 +02:00
|
|
|
if c.sticky then return true end
|
2016-04-05 09:02:00 +02:00
|
|
|
local tags = screen.tags
|
2016-02-07 15:12:22 +01:00
|
|
|
for _, t in ipairs(tags) do
|
2009-03-14 13:47:50 +01:00
|
|
|
if t.selected then
|
|
|
|
local ctags = c:tags()
|
|
|
|
for _, v in ipairs(ctags) do
|
|
|
|
if v == t then
|
2009-10-24 14:53:01 +02:00
|
|
|
return true
|
2009-03-14 13:47:50 +01:00
|
|
|
end
|
|
|
|
end
|
2009-02-27 17:22:03 +01:00
|
|
|
end
|
|
|
|
end
|
2009-10-24 14:53:01 +02:00
|
|
|
return false
|
2009-02-27 17:22:03 +01:00
|
|
|
end
|
|
|
|
|
2010-10-17 15:35:50 +02:00
|
|
|
--- Filtering function to include only the minimized clients from currently selected tags.
|
|
|
|
-- @param c The client.
|
|
|
|
-- @param screen The screen we are drawing on.
|
|
|
|
-- @return true if c is in a selected tag on screen and is minimized, false otherwise
|
2018-08-18 21:47:56 +02:00
|
|
|
-- @filterfunction awful.tasklist.filter.minimizedcurrenttags
|
2012-06-14 01:08:27 +02:00
|
|
|
function tasklist.filter.minimizedcurrenttags(c, screen)
|
2016-02-26 19:19:58 +01:00
|
|
|
screen = get_screen(screen)
|
2010-10-17 15:35:50 +02:00
|
|
|
-- Only print client on the same screen as this widget
|
2016-02-26 19:19:58 +01:00
|
|
|
if get_screen(c.screen) ~= screen then return false end
|
2010-10-17 15:35:50 +02:00
|
|
|
-- Check client is minimized
|
|
|
|
if not c.minimized then return false end
|
2012-12-13 03:30:37 +01:00
|
|
|
-- Include sticky client
|
|
|
|
if c.sticky then return true end
|
2016-04-05 09:02:00 +02:00
|
|
|
local tags = screen.tags
|
2016-02-07 15:12:22 +01:00
|
|
|
for _, t in ipairs(tags) do
|
2010-10-17 15:35:50 +02:00
|
|
|
-- Select only minimized clients
|
|
|
|
if t.selected then
|
|
|
|
local ctags = c:tags()
|
|
|
|
for _, v in ipairs(ctags) do
|
|
|
|
if v == t then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2009-10-24 14:53:01 +02:00
|
|
|
--- Filtering function to include only the currently focused client.
|
2009-08-27 11:21:32 +02:00
|
|
|
-- @param c The client.
|
|
|
|
-- @param screen The screen we are drawing on.
|
2009-10-24 14:53:01 +02:00
|
|
|
-- @return true if c is focused on screen, false otherwise
|
2018-08-18 21:47:56 +02:00
|
|
|
-- @filterfunction awful.tasklist.filter.focused
|
2012-06-14 01:08:27 +02:00
|
|
|
function tasklist.filter.focused(c, screen)
|
2009-08-27 11:21:32 +02:00
|
|
|
-- Only print client on the same screen as this widget
|
2016-02-26 19:19:58 +01:00
|
|
|
return get_screen(c.screen) == get_screen(screen) and capi.client.focus == c
|
2009-08-27 11:21:32 +02:00
|
|
|
end
|
|
|
|
|
2012-06-14 01:08:27 +02:00
|
|
|
function tasklist.mt:__call(...)
|
|
|
|
return tasklist.new(...)
|
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(tasklist, tasklist.mt)
|
2009-05-08 11:59:38 +02:00
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|