24 lines
728 B
Lua
24 lines
728 B
Lua
-- Default configuration file
|
|
-- Copy to TBD to override values. This file will be overridden on update.
|
|
local awful = require("awful")
|
|
|
|
|
|
local config = {}
|
|
|
|
-- Terminal
|
|
config.terminal = "terminator"
|
|
|
|
-- 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 " .. awful.util.getdir("config") .. "/rofi/themes/paper-float.rasi"
|
|
config.windowSwitcher = "rofi -show window -config " .. awful.util.getdir("config") .. "/rofi/themes/paper-float.rasi"
|
|
|
|
|
|
return config |