1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2026-03-22 21:45:11 +00:00

new startup and settings items

This commit is contained in:
Toma Adrian Ionut 2022-11-20 11:37:18 +02:00
parent 269c47f6dd
commit 7e2c7af45a
2 changed files with 8 additions and 0 deletions

View file

@ -21,6 +21,9 @@ local settings = {
-- Bluetooth -- Bluetooth
BLUESTATUS = false, BLUESTATUS = false,
-- Gaps
useless_gap = 6,
} }
return settings return settings

View file

@ -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