Merge branch 'awesomeWM:master' into master

This commit is contained in:
Rayhan Kafi Pratama 2022-06-25 06:31:36 +07:00 committed by GitHub
commit cd37d44786
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 8 deletions

View File

@ -52,7 +52,8 @@ sudo apt build-dep awesome
git clone https://github.com/awesomewm/awesome git clone https://github.com/awesomewm/awesome
cd awesome cd awesome
make package make package
sudo apt install *.deb cd build
sudo apt install ./*.deb
``` ```
## Running Awesome ## Running Awesome

View File

@ -49,7 +49,6 @@ local common = require("awful.widget.common")
local tag = require("awful.tag") local tag = require("awful.tag")
local beautiful = require("beautiful") local beautiful = require("beautiful")
local fixed = require("wibox.layout.fixed") local fixed = require("wibox.layout.fixed")
local surface = require("gears.surface")
local timer = require("gears.timer") local timer = require("gears.timer")
local gcolor = require("gears.color") local gcolor = require("gears.color")
local gstring = require("gears.string") local gstring = require("gears.string")
@ -372,7 +371,7 @@ function taglist.taglist_label(t, args)
end end
if not taglist_disable_icon then if not taglist_disable_icon then
if t.icon then if t.icon then
icon = surface.load(t.icon) icon = t.icon
end end
end end

View File

@ -707,8 +707,7 @@ lua_class_t client_class;
*/ */
/** /**
* Define if the client must be hidden, i.e. never mapped, * Define if the client must be hidden (Never mapped, invisible in taskbar).
* invisible in taskbar.
* *
* @property hidden * @property hidden
* @tparam boolean hidden * @tparam boolean hidden
@ -719,8 +718,7 @@ lua_class_t client_class;
*/ */
/** /**
* Define it the client must be iconify, i.e. only visible in * Define if the client must be iconified (Only visible in taskbar).
* taskbar.
* *
* Minimized clients are still part of tags and screens, but * Minimized clients are still part of tags and screens, but
* they are not displayed. You can unminimize using `c.minimized = false`, * they are not displayed. You can unminimize using `c.minimized = false`,
@ -1184,7 +1182,7 @@ lua_class_t client_class;
*/ */
/** /**
* Set the client sticky, i.e. available on all tags. * Set the client sticky (Available on all tags).
* *
* Please note that AwesomeWM implements `sticky` clients * Please note that AwesomeWM implements `sticky` clients
* per screens rather than globally like some other * per screens rather than globally like some other