|
@ -51,6 +51,9 @@ end |
|
|
-- Themes define colours, icons, font and wallpapers. |
|
|
-- Themes define colours, icons, font and wallpapers. |
|
|
beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua") |
|
|
beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua") |
|
|
|
|
|
|
|
|
|
|
|
-- Notifications |
|
|
|
|
|
naughty.config.defaults['icon_size'] = 100 |
|
|
|
|
|
|
|
|
-- This is used later as the default terminal and editor to run. |
|
|
-- This is used later as the default terminal and editor to run. |
|
|
terminal = "x-terminal-emulator" |
|
|
terminal = "x-terminal-emulator" |
|
|
editor = os.getenv("EDITOR") or "editor" |
|
|
editor = os.getenv("EDITOR") or "editor" |
|
@ -354,6 +357,11 @@ globalkeys = gears.table.join( |
|
|
-- Menubar |
|
|
-- Menubar |
|
|
awful.key({ modkey }, "p", function() menubar.show() end, |
|
|
awful.key({ modkey }, "p", function() menubar.show() end, |
|
|
{description = "show the menubar", group = "launcher"}) |
|
|
{description = "show the menubar", group = "launcher"}) |
|
|
|
|
|
-- custom |
|
|
|
|
|
--awful.key({ }, "XF86Launch8", function() awful.spawn.with_shell("xdotool key XF86AudioPrev") end, |
|
|
|
|
|
--{description = "show the menubar", group = "launcher"}), |
|
|
|
|
|
--awful.key({ }, "XF86Launch9", function() awful.spawn.with_shell("xdotool key XF86AudioNext") end, |
|
|
|
|
|
--{description = "show the menubar", group = "launcher"}) |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
clientkeys = gears.table.join( |
|
|
clientkeys = gears.table.join( |
|
|