🐛 fix(awesome): Actually start picom on startup
This commit is contained in:
parent
4994845c5f
commit
3d9d4b2b3e
2 changed files with 5 additions and 1 deletions
|
@ -2,6 +2,7 @@ pcall(require, "luarocks.loader")
|
||||||
|
|
||||||
local gears = require("gears")
|
local gears = require("gears")
|
||||||
local beautiful = require("beautiful")
|
local beautiful = require("beautiful")
|
||||||
|
local awful = require("awful")
|
||||||
|
|
||||||
require("awful.autofocus")
|
require("awful.autofocus")
|
||||||
|
|
||||||
|
@ -19,3 +20,6 @@ require("signals")
|
||||||
|
|
||||||
-- Ui/Panels --
|
-- Ui/Panels --
|
||||||
require("ui")
|
require("ui")
|
||||||
|
|
||||||
|
-- Autostart --
|
||||||
|
awful.spawn.with_shell("picom")
|
||||||
|
|
|
@ -31,7 +31,7 @@ animation-for-transient-window = "slide-up"; #popup windows
|
||||||
# unless explicitly requested using the wintypes option.
|
# unless explicitly requested using the wintypes option.
|
||||||
#
|
#
|
||||||
# shadow = false
|
# shadow = false
|
||||||
shadow = false;
|
shadow = true;
|
||||||
|
|
||||||
# The blur radius for shadows, in pixels. (defaults to 12)
|
# The blur radius for shadows, in pixels. (defaults to 12)
|
||||||
# shadow-radius = 12
|
# shadow-radius = 12
|
||||||
|
|
Loading…
Reference in a new issue