Minor cleanup
parent
995c522adb
commit
067b02c69e
14
config.lua
14
config.lua
|
@ -4,6 +4,7 @@ config.battery = { enabled = false }
|
||||||
config.backlight = { enabled = false }
|
config.backlight = { enabled = false }
|
||||||
config.simple_widgets = { enabled = true }
|
config.simple_widgets = { enabled = true }
|
||||||
config.launcher = { enabled = true }
|
config.launcher = { enabled = true }
|
||||||
|
config.screenshot = { enabled = true }
|
||||||
|
|
||||||
config.core = {
|
config.core = {
|
||||||
wallpaper = "/home/assets/wallpapers/Themed/Stellaris/Gigapixel/City.png",
|
wallpaper = "/home/assets/wallpapers/Themed/Stellaris/Gigapixel/City.png",
|
||||||
|
@ -18,9 +19,6 @@ config.core = {
|
||||||
}
|
}
|
||||||
]]--
|
]]--
|
||||||
|
|
||||||
-- Fixed width of all clienticons in tasklist
|
|
||||||
clienticon_width = 50,
|
|
||||||
|
|
||||||
-- The position of the bar on each screen
|
-- The position of the bar on each screen
|
||||||
bar_position = "bottom",
|
bar_position = "bottom",
|
||||||
-- Bar size in dpi
|
-- Bar size in dpi
|
||||||
|
@ -74,8 +72,7 @@ config.core = {
|
||||||
-- Run these commands, in this order, when awesome starts.
|
-- Run these commands, in this order, when awesome starts.
|
||||||
startup_commands = {
|
startup_commands = {
|
||||||
"ibus-daemon --daemonize --replace --xim",
|
"ibus-daemon --daemonize --replace --xim",
|
||||||
"keepassxc",
|
"keepassxc"
|
||||||
"mictray"
|
|
||||||
},
|
},
|
||||||
|
|
||||||
continuous_tag_updates = true,
|
continuous_tag_updates = true,
|
||||||
|
@ -122,13 +119,6 @@ config.mpc = {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
config.screenshot = {
|
|
||||||
enabled = true,
|
|
||||||
|
|
||||||
-- Should end with a slash
|
|
||||||
save_dir = "/home/mark/Desktop/Documents/screenshots/"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
config.volume = {
|
config.volume = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
|
|
|
@ -7,7 +7,7 @@ local function capture(source, target)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function flameshot()
|
local function flameshot()
|
||||||
awful.spawn("flameshot gui -p \"" .. config.screenshot.save_dir .. "\"", false)
|
awful.spawn("flameshot gui", false)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue