Minor cleanup

master
Mark 2022-07-17 09:01:24 -07:00
parent 995c522adb
commit 067b02c69e
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
2 changed files with 3 additions and 13 deletions

View File

@ -4,6 +4,7 @@ config.battery = { enabled = false }
config.backlight = { enabled = false }
config.simple_widgets = { enabled = true }
config.launcher = { enabled = true }
config.screenshot = { enabled = true }
config.core = {
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
bar_position = "bottom",
-- Bar size in dpi
@ -74,8 +72,7 @@ config.core = {
-- Run these commands, in this order, when awesome starts.
startup_commands = {
"ibus-daemon --daemonize --replace --xim",
"keepassxc",
"mictray"
"keepassxc"
},
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 = {
enabled = true,

View File

@ -7,7 +7,7 @@ local function capture(source, target)
end
local function flameshot()
awful.spawn("flameshot gui -p \"" .. config.screenshot.save_dir .. "\"", false)
awful.spawn("flameshot gui", false)
end