1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Description: Debian customization (menu, x-terminal-emulator, editor)
Forwarded: not-needed
Author: Julien Danjou <acid@debian.org>
--- a/awesomerc.lua
+++ b/awesomerc.lua
@@ -19,6 +19,9 @@
-- when client with a matching name is opened:
require("awful.hotkeys_popup.keys")
+-- Load Debian menu entries
+local debian = require("debian.menu")
+
-- {{{ Error handling
-- @DOC_ERROR_HANDLING@
-- Check if awesome encountered an error during startup and fell back to
@@ -52,8 +55,8 @@
-- @DOC_DEFAULT_APPLICATIONS@
-- This is used later as the default terminal and editor to run.
-terminal = "xterm"
-editor = os.getenv("EDITOR") or "nano"
+terminal = "x-terminal-emulator"
+editor = os.getenv("EDITOR") or "editor"
editor_cmd = terminal .. " -e " .. editor
-- Default modkey.
@@ -97,6 +100,7 @@
}
mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
+ { "Debian", debian.menu.Debian_menu.Debian },
{ "open terminal", terminal }
}
})
|