Add README todo, some comments and a small code cleanup

This commit is contained in:
Alice Gaudon 2019-08-11 23:04:23 +02:00
parent c6d65d7ead
commit 77797f8caf
3 changed files with 7 additions and 1 deletions

View File

@ -17,6 +17,7 @@ By default, Simple Awesome uses
## To do
- Add a sound level control widget
- Add a media control widget
- Manage workspaces
- Improve "leave menu"'s design

View File

@ -1 +1,3 @@
return require("default_config")
local config = require("default_config")
return config

View File

@ -15,13 +15,16 @@ config.terminal = "terminator"
-- Change to gears.filesystem.get_themes_dir() .. "default/theme.lua" to use default awesome theme
config.theme = awful.util.getdir("config") .. "/default_theme.lua"
-- Screenshot utility
config.screenshot_utility_command = "flameshot gui"
config.screenshot_utility_auto_start = true
config.screenshot_utility_auto_start_command = "flameshot"
-- Keyboard layout
config.kbSwitchCmd = "setxkbmap"
config.kbLayouts = { "fr", "us" }
-- Run menu
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"