Advertisement
JayAurabind

Manjaro awesome config

Apr 16th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.07 KB | None | 0 0
  1. -- Standard awesome library
  2. local gears = require("gears")
  3. local awful = require("awful")
  4. awful.rules = require("awful.rules")
  5. require("awful.autofocus")
  6. -- Widget and layout library
  7. local wibox = require("wibox")
  8. -- Theme handling library
  9. local beautiful = require("beautiful")
  10. -- Notification library
  11. local naughty = require("naughty")
  12. local menubar = require("menubar")
  13.  
  14. -- {{{ Error handling
  15. -- Check if awesome encountered an error during startup and fell back to
  16. -- another config (This code will only ever execute for the fallback config)
  17. if awesome.startup_errors then
  18.     naughty.notify({ preset = naughty.config.presets.critical,
  19.                      title = "Oops, there were errors during startup!",
  20.                      text = awesome.startup_errors })
  21. end
  22.  
  23. -- Handle runtime errors after startup
  24. do
  25.     local in_error = false
  26.     awesome.connect_signal("debug::error", function (err)
  27.         -- Make sure we don't go into an endless error loop
  28.         if in_error then return end
  29.         in_error = true
  30.  
  31.         naughty.notify({ preset = naughty.config.presets.critical,
  32.                          title = "Oops, an error happened!",
  33.                          text = err })
  34.         in_error = false
  35.     end)
  36. end
  37. -- }}}
  38.  
  39. -- {{{ Variable definitions
  40. -- Themes define colours, icons, and wallpapers
  41. beautiful.init("/usr/share/awesome/themes/default/theme.lua")
  42.  
  43. -- This is used later as the default terminal and editor to run.
  44. terminal = "xfce4-terminal"
  45. editor = os.getenv("EDITOR") or "nano"
  46. editor_cmd = terminal .. " -e " .. editor
  47.  
  48. -- Default modkey.
  49. -- Usually, Mod4 is the key with a logo between Control and Alt.
  50. -- If you do not like this or do not have such a key,
  51. -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
  52. -- However, you can use another modifier like Mod1, but it may interact with others.
  53. modkey = "Mod4"
  54.  
  55. -- Table of layouts to cover with awful.layout.inc, order matters.
  56. local layouts =
  57. {
  58.     awful.layout.suit.floating,
  59.     awful.layout.suit.tile,
  60.     awful.layout.suit.tile.left,
  61.     awful.layout.suit.tile.bottom,
  62.     awful.layout.suit.tile.top,
  63.     awful.layout.suit.fair,
  64.     awful.layout.suit.fair.horizontal,
  65.     awful.layout.suit.spiral,
  66.     awful.layout.suit.spiral.dwindle,
  67.     awful.layout.suit.max,
  68.     awful.layout.suit.max.fullscreen,
  69.     awful.layout.suit.magnifier
  70. }
  71. -- }}}
  72.  
  73. -- {{{ Wallpaper
  74. if beautiful.wallpaper then
  75.     for s = 1, screen.count() do
  76.         gears.wallpaper.maximized(beautiful.wallpaper, s, true)
  77.     end
  78. end
  79. -- }}}
  80.  
  81. -- {{{ Tags
  82. -- Define a tag table which hold all screen tags.
  83. tags = {}
  84. for s = 1, screen.count() do
  85.     -- Each screen has its own tag table.
  86.     tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1])
  87. end
  88. -- }}}
  89.  
  90. -- {{{ Menu
  91. -- Create a laucher widget and a main menu
  92. myawesomemenu = {
  93.    { "manual", terminal .. " -e man awesome" },
  94.    { "edit config", editor_cmd .. " " .. awesome.conffile },
  95.    { "restart", awesome.restart },
  96.    { "quit", awesome.quit }
  97. }
  98.  
  99. mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
  100.                                     { "open terminal", terminal }
  101.                                   }
  102.                         })
  103.  
  104. mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon,
  105.                                      menu = mymainmenu })
  106.  
  107. -- Menubar configuration
  108. menubar.utils.terminal = terminal -- Set the terminal for applications that require it
  109. -- }}}
  110.  
  111. -- {{{ Wibox
  112. -- Create a textclock widget
  113. mytextclock = awful.widget.textclock()
  114.  
  115. -- Create a wibox for each screen and add it
  116. mywibox = {}
  117. mypromptbox = {}
  118. mylayoutbox = {}
  119. mytaglist = {}
  120. mytaglist.buttons = awful.util.table.join(
  121.                     awful.button({ }, 1, awful.tag.viewonly),
  122.                     awful.button({ modkey }, 1, awful.client.movetotag),
  123.                     awful.button({ }, 3, awful.tag.viewtoggle),
  124.                     awful.button({ modkey }, 3, awful.client.toggletag),
  125.                     awful.button({ }, 4, function(t) awful.tag.viewnext(awful.tag.getscreen(t)) end),
  126.                     awful.button({ }, 5, function(t) awful.tag.viewprev(awful.tag.getscreen(t)) end)
  127.                     )
  128. mytasklist = {}
  129. mytasklist.buttons = awful.util.table.join(
  130.                      awful.button({ }, 1, function (c)
  131.                                               if c == client.focus then
  132.                                                   c.minimized = true
  133.                                               else
  134.                                                   -- Without this, the following
  135.                                                   -- :isvisible() makes no sense
  136.                                                   c.minimized = false
  137.                                                   if not c:isvisible() then
  138.                                                       awful.tag.viewonly(c:tags()[1])
  139.                                                   end
  140.                                                   -- This will also un-minimize
  141.                                                   -- the client, if needed
  142.                                                   client.focus = c
  143.                                                   c:raise()
  144.                                               end
  145.                                           end),
  146.                      awful.button({ }, 3, function ()
  147.                                               if instance then
  148.                                                   instance:hide()
  149.                                                   instance = nil
  150.                                               else
  151.                                                   instance = awful.menu.clients({ width=250 })
  152.                                               end
  153.                                           end),
  154.                      awful.button({ }, 4, function ()
  155.                                               awful.client.focus.byidx(1)
  156.                                               if client.focus then client.focus:raise() end
  157.                                           end),
  158.                      awful.button({ }, 5, function ()
  159.                                               awful.client.focus.byidx(-1)
  160.                                               if client.focus then client.focus:raise() end
  161.                                           end))
  162.  
  163. for s = 1, screen.count() do
  164.     -- Create a promptbox for each screen
  165.     mypromptbox[s] = awful.widget.prompt()
  166.     -- Create an imagebox widget which will contains an icon indicating which layout we're using.
  167.     -- We need one layoutbox per screen.
  168.     mylayoutbox[s] = awful.widget.layoutbox(s)
  169.     mylayoutbox[s]:buttons(awful.util.table.join(
  170.                            awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
  171.                            awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
  172.                            awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
  173.                            awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
  174.     -- Create a taglist widget
  175.     mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
  176.  
  177.     -- Create a tasklist widget
  178.     mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
  179.  
  180.     -- Create the wibox
  181.     mywibox[s] = awful.wibox({ position = "top", screen = s })
  182.  
  183.     -- Widgets that are aligned to the left
  184.     local left_layout = wibox.layout.fixed.horizontal()
  185.     left_layout:add(mylauncher)
  186.     left_layout:add(mytaglist[s])
  187.     left_layout:add(mypromptbox[s])
  188.  
  189.     -- Widgets that are aligned to the right
  190.     local right_layout = wibox.layout.fixed.horizontal()
  191.     if s == 1 then right_layout:add(wibox.widget.systray()) end
  192.     right_layout:add(mytextclock)
  193.     right_layout:add(mylayoutbox[s])
  194.  
  195.     -- Now bring it all together (with the tasklist in the middle)
  196.     local layout = wibox.layout.align.horizontal()
  197.     layout:set_left(left_layout)
  198.     layout:set_middle(mytasklist[s])
  199.     layout:set_right(right_layout)
  200.  
  201.     mywibox[s]:set_widget(layout)
  202. end
  203. -- }}}
  204.  
  205. -- {{{ Mouse bindings
  206. root.buttons(awful.util.table.join(
  207.     awful.button({ }, 3, function () mymainmenu:toggle() end),
  208.     awful.button({ }, 4, awful.tag.viewnext),
  209.     awful.button({ }, 5, awful.tag.viewprev)
  210. ))
  211. -- }}}
  212.  
  213. -- {{{ Key bindings
  214. globalkeys = awful.util.table.join(
  215.     awful.key({ modkey,           }, "Left",   awful.tag.viewprev       ),
  216.     awful.key({ modkey,           }, "Right",  awful.tag.viewnext       ),
  217.     awful.key({ modkey,           }, "Escape", awful.tag.history.restore),
  218.  
  219.     awful.key({ modkey,           }, "j",
  220.         function ()
  221.             awful.client.focus.byidx( 1)
  222.             if client.focus then client.focus:raise() end
  223.         end),
  224.     awful.key({ modkey,           }, "k",
  225.         function ()
  226.             awful.client.focus.byidx(-1)
  227.             if client.focus then client.focus:raise() end
  228.         end),
  229.     awful.key({ modkey,           }, "w", function () mymainmenu:show() end),
  230.  
  231.     -- Layout manipulation
  232.     awful.key({ modkey, "Shift"   }, "j", function () awful.client.swap.byidx(  1)    end),
  233.     awful.key({ modkey, "Shift"   }, "k", function () awful.client.swap.byidx( -1)    end),
  234.     awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
  235.     awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
  236.     awful.key({ modkey,           }, "u", awful.client.urgent.jumpto),
  237.     awful.key({ modkey,           }, "Tab",
  238.         function ()
  239.             awful.client.focus.history.previous()
  240.             if client.focus then
  241.                 client.focus:raise()
  242.             end
  243.         end),
  244.  
  245.     -- Standard program
  246.     awful.key({ modkey,           }, "Return", function () awful.util.spawn(terminal) end),
  247.     awful.key({ modkey, "Control" }, "r", awesome.restart),
  248.     awful.key({ modkey, "Shift"   }, "q", awesome.quit),
  249.  
  250.     awful.key({ modkey,           }, "l",     function () awful.tag.incmwfact( 0.05)    end),
  251.     awful.key({ modkey,           }, "h",     function () awful.tag.incmwfact(-0.05)    end),
  252.     awful.key({ modkey, "Shift"   }, "h",     function () awful.tag.incnmaster( 1)      end),
  253.     awful.key({ modkey, "Shift"   }, "l",     function () awful.tag.incnmaster(-1)      end),
  254.     awful.key({ modkey, "Control" }, "h",     function () awful.tag.incncol( 1)         end),
  255.     awful.key({ modkey, "Control" }, "l",     function () awful.tag.incncol(-1)         end),
  256.     awful.key({ modkey,           }, "space", function () awful.layout.inc(layouts,  1) end),
  257.     awful.key({ modkey, "Shift"   }, "space", function () awful.layout.inc(layouts, -1) end),
  258.  
  259.     awful.key({ modkey, "Control" }, "n", awful.client.restore),
  260.  
  261.     -- Prompt
  262.     awful.key({ modkey },            "r",     function () mypromptbox[mouse.screen]:run() end),
  263.  
  264.     awful.key({ modkey }, "x",
  265.               function ()
  266.                   awful.prompt.run({ prompt = "Run Lua code: " },
  267.                   mypromptbox[mouse.screen].widget,
  268.                   awful.util.eval, nil,
  269.                   awful.util.getdir("cache") .. "/history_eval")
  270.               end),
  271.     -- Menubar
  272.     awful.key({ modkey }, "p", function() menubar.show() end)
  273. )
  274.  
  275. clientkeys = awful.util.table.join(
  276.     awful.key({ modkey,           }, "f",      function (c) c.fullscreen = not c.fullscreen  end),
  277.     awful.key({ modkey, "Shift"   }, "c",      function (c) c:kill()                         end),
  278.     awful.key({ modkey, "Control" }, "space",  awful.client.floating.toggle                     ),
  279.     awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
  280.     awful.key({ modkey,           }, "o",      awful.client.movetoscreen                        ),
  281.     awful.key({ modkey,           }, "t",      function (c) c.ontop = not c.ontop            end),
  282.     awful.key({ modkey,           }, "n",
  283.         function (c)
  284.             -- The client currently has the input focus, so it cannot be
  285.             -- minimized, since minimized clients can't have the focus.
  286.             c.minimized = true
  287.         end),
  288.     awful.key({ modkey,           }, "m",
  289.         function (c)
  290.             c.maximized_horizontal = not c.maximized_horizontal
  291.             c.maximized_vertical   = not c.maximized_vertical
  292.         end)
  293. )
  294.  
  295. -- Bind all key numbers to tags.
  296. -- Be careful: we use keycodes to make it works on any keyboard layout.
  297. -- This should map on the top row of your keyboard, usually 1 to 9.
  298. for i = 1, 9 do
  299.     globalkeys = awful.util.table.join(globalkeys,
  300.         awful.key({ modkey }, "#" .. i + 9,
  301.                   function ()
  302.                         local screen = mouse.screen
  303.                         local tag = awful.tag.gettags(screen)[i]
  304.                         if tag then
  305.                            awful.tag.viewonly(tag)
  306.                         end
  307.                   end),
  308.         awful.key({ modkey, "Control" }, "#" .. i + 9,
  309.                   function ()
  310.                       local screen = mouse.screen
  311.                       local tag = awful.tag.gettags(screen)[i]
  312.                       if tag then
  313.                          awful.tag.viewtoggle(tag)
  314.                       end
  315.                   end),
  316.         awful.key({ modkey, "Shift" }, "#" .. i + 9,
  317.                   function ()
  318.                       if client.focus then
  319.                           local tag = awful.tag.gettags(client.focus.screen)[i]
  320.                           if tag then
  321.                               awful.client.movetotag(tag)
  322.                           end
  323.                      end
  324.                   end),
  325.         awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
  326.                   function ()
  327.                       if client.focus then
  328.                           local tag = awful.tag.gettags(client.focus.screen)[i]
  329.                           if tag then
  330.                               awful.client.toggletag(tag)
  331.                           end
  332.                       end
  333.                   end))
  334. end
  335.  
  336. clientbuttons = awful.util.table.join(
  337.     awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
  338.     awful.button({ modkey }, 1, awful.mouse.client.move),
  339.     awful.button({ modkey }, 3, awful.mouse.client.resize))
  340.  
  341. -- Set keys
  342. root.keys(globalkeys)
  343. -- }}}
  344.  
  345. -- {{{ Rules
  346. awful.rules.rules = {
  347.     -- All clients will match this rule.
  348.     { rule = { },
  349.       properties = { border_width = beautiful.border_width,
  350.                      border_color = beautiful.border_normal,
  351.                      focus = awful.client.focus.filter,
  352.                      keys = clientkeys,
  353.                      buttons = clientbuttons } },
  354.     { rule = { class = "MPlayer" },
  355.       properties = { floating = true } },
  356.     { rule = { class = "pinentry" },
  357.       properties = { floating = true } },
  358.     { rule = { class = "gimp" },
  359.       properties = { floating = true } },
  360.     -- Set Firefox to always map on tags number 2 of screen 1.
  361.     -- { rule = { class = "Firefox" },
  362.     --   properties = { tag = tags[1][2] } },
  363. }
  364. -- }}}
  365.  
  366. -- {{{ Signals
  367. -- Signal function to execute when a new client appears.
  368. client.connect_signal("manage", function (c, startup)
  369.     -- Enable sloppy focus
  370.     c:connect_signal("mouse::enter", function(c)
  371.         if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
  372.             and awful.client.focus.filter(c) then
  373.             client.focus = c
  374.         end
  375.     end)
  376.  
  377.     if not startup then
  378.         -- Set the windows at the slave,
  379.         -- i.e. put it at the end of others instead of setting it master.
  380.         -- awful.client.setslave(c)
  381.  
  382.         -- Put windows in a smart way, only if they does not set an initial position.
  383.         if not c.size_hints.user_position and not c.size_hints.program_position then
  384.             awful.placement.no_overlap(c)
  385.             awful.placement.no_offscreen(c)
  386.         end
  387.     end
  388.  
  389.     local titlebars_enabled = false
  390.     if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
  391.         -- buttons for the titlebar
  392.         local buttons = awful.util.table.join(
  393.                 awful.button({ }, 1, function()
  394.                     client.focus = c
  395.                     c:raise()
  396.                     awful.mouse.client.move(c)
  397.                 end),
  398.                 awful.button({ }, 3, function()
  399.                     client.focus = c
  400.                     c:raise()
  401.                     awful.mouse.client.resize(c)
  402.                 end)
  403.                 )
  404.  
  405.         -- Widgets that are aligned to the left
  406.         local left_layout = wibox.layout.fixed.horizontal()
  407.         left_layout:add(awful.titlebar.widget.iconwidget(c))
  408.         left_layout:buttons(buttons)
  409.  
  410.         -- Widgets that are aligned to the right
  411.         local right_layout = wibox.layout.fixed.horizontal()
  412.         right_layout:add(awful.titlebar.widget.floatingbutton(c))
  413.         right_layout:add(awful.titlebar.widget.maximizedbutton(c))
  414.         right_layout:add(awful.titlebar.widget.stickybutton(c))
  415.         right_layout:add(awful.titlebar.widget.ontopbutton(c))
  416.         right_layout:add(awful.titlebar.widget.closebutton(c))
  417.  
  418.         -- The title goes in the middle
  419.         local middle_layout = wibox.layout.flex.horizontal()
  420.         local title = awful.titlebar.widget.titlewidget(c)
  421.         title:set_align("center")
  422.         middle_layout:add(title)
  423.         middle_layout:buttons(buttons)
  424.  
  425.         -- Now bring it all together
  426.         local layout = wibox.layout.align.horizontal()
  427.         layout:set_left(left_layout)
  428.         layout:set_right(right_layout)
  429.         layout:set_middle(middle_layout)
  430.  
  431.         awful.titlebar(c):set_widget(layout)
  432.     end
  433. end)
  434.  
  435. client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
  436. client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
  437. -- }}}
  438.  
  439.  
  440. awful.util.spawn_with_shell("xmodmap -e 'clear Lock'")
  441. awful.util.spawn_with_shell("xmodmap -e 'keycode 9 = Caps_Lock'")
  442. awful.util.spawn_with_shell("xmodmap -e 'keycode 66 = Escape'")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement