mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2026-03-23 05:55:12 +00:00
new startup and settings items
This commit is contained in:
parent
269c47f6dd
commit
7e2c7af45a
|
|
@ -21,6 +21,9 @@ local settings = {
|
||||||
|
|
||||||
-- Bluetooth
|
-- Bluetooth
|
||||||
BLUESTATUS = false,
|
BLUESTATUS = false,
|
||||||
|
|
||||||
|
-- Gaps
|
||||||
|
useless_gap = 6,
|
||||||
}
|
}
|
||||||
|
|
||||||
return settings
|
return settings
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,15 @@
|
||||||
local awful = require("awful")
|
local awful = require("awful")
|
||||||
|
local beautiful = require("beautiful")
|
||||||
|
|
||||||
local startup =
|
local startup =
|
||||||
{
|
{
|
||||||
awful.spawn.with_shell("nitrogen --set-zoom-fill --no-recurse --random --head=0 ~/Pictures/SFW/Nature"),
|
awful.spawn.with_shell("nitrogen --set-zoom-fill --no-recurse --random --head=0 ~/Pictures/SFW/Nature"),
|
||||||
awful.spawn.with_shell("optimus-manager-qt"),
|
awful.spawn.with_shell("optimus-manager-qt"),
|
||||||
os.execute("picom -b"),
|
os.execute("picom -b"),
|
||||||
|
|
||||||
|
-- Mute volume on startup
|
||||||
|
os.execute(string.format("amixer set Master 0%%")),
|
||||||
|
beautiful.volume.update(),
|
||||||
}
|
}
|
||||||
|
|
||||||
return startup
|
return startup
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue