simple-awesome/default_config.lua

30 lines
811 B
Lua
Raw Normal View History

-- Default configuration file
-- Copy to TBD to override values. This file will be overridden on update.
local awful = require("awful")
local config = {}
2019-07-24 11:32:27 +02:00
-- General
config.modkey = "Mod4"
-- 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"
-- Media control
config.volume_osd_timeout = 2
return config