simple-awesome/default_config.lua

22 lines
535 B
Lua

-- Default configuration file
-- Copy to TBD to override values. This file will be overridden on update.
local awful = require("awful")
local config = {}
-- Theme
-- Change to gears.filesystem.get_themes_dir() .. "default/theme.lua" to use default awesome theme
config.theme = awful.util.getdir("config") .. "/default_theme.lua"
config.screenshotCmd = "flameshot gui"
config.kbSwitchCmd = "setxkbmap"
config.kbLayouts = { "fr", "us" }
config.runMenu = "rofi -show run"
config.windowSwitcher = "rofi -show window"
return config