Merge branch 'awesomeWM:master' into master
This commit is contained in:
commit
cd37d44786
|
@ -52,7 +52,8 @@ sudo apt build-dep awesome
|
|||
git clone https://github.com/awesomewm/awesome
|
||||
cd awesome
|
||||
make package
|
||||
sudo apt install *.deb
|
||||
cd build
|
||||
sudo apt install ./*.deb
|
||||
```
|
||||
|
||||
## Running Awesome
|
||||
|
|
|
@ -49,7 +49,6 @@ local common = require("awful.widget.common")
|
|||
local tag = require("awful.tag")
|
||||
local beautiful = require("beautiful")
|
||||
local fixed = require("wibox.layout.fixed")
|
||||
local surface = require("gears.surface")
|
||||
local timer = require("gears.timer")
|
||||
local gcolor = require("gears.color")
|
||||
local gstring = require("gears.string")
|
||||
|
@ -372,7 +371,7 @@ function taglist.taglist_label(t, args)
|
|||
end
|
||||
if not taglist_disable_icon then
|
||||
if t.icon then
|
||||
icon = surface.load(t.icon)
|
||||
icon = t.icon
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -707,8 +707,7 @@ lua_class_t client_class;
|
|||
*/
|
||||
|
||||
/**
|
||||
* Define if the client must be hidden, i.e. never mapped,
|
||||
* invisible in taskbar.
|
||||
* Define if the client must be hidden (Never mapped, invisible in taskbar).
|
||||
*
|
||||
* @property 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
|
||||
* taskbar.
|
||||
* Define if the client must be iconified (Only visible in taskbar).
|
||||
*
|
||||
* Minimized clients are still part of tags and screens, but
|
||||
* 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
|
||||
* per screens rather than globally like some other
|
||||
|
|
Loading…
Reference in New Issue