diff options
166 files changed, 1394 insertions, 3284 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index c8d4cb6..ec80afe 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -1,15 +1,3 @@ ---[[ - - Awesome WM configuration template - https://github.com/awesomeWM - - Freedesktop : https://github.com/lcpz/awesome-freedesktop - - Copycats themes : https://github.com/lcpz/awesome-copycats - - lain : https://github.com/lcpz/lain - ---]] -- {{{ Required libraries local awesome, client, mouse, screen, tag = awesome, client, mouse, screen, tag @@ -119,12 +107,12 @@ local modkey1 = "Control" -- personal variables --change these variables if you want local browser1 = "brave" -local browser2 = "firefox" +local browser2 = "FireDragon" local browser3 = "chromium -no-default-browser-check" local editor = os.getenv("EDITOR") or "nano" -local editorgui = "atom" -local filemanager = "pcmanfm" -local mailclient = "evolution" +local editorgui = "neovide" +local filemanager = "dolphin" +local mailclient = "mailspring" local mediaplayer = "spotify" local terminal = "kitty" local virtualmachine = "virtualbox" @@ -241,8 +229,6 @@ local myawesomemenu = { awful.util.mymainmenu = freedesktop.menu.build({ before = { { "Awesome", myawesomemenu }, - --{ "Atom", "atom" }, - -- other triads can be put here }, after = { { "Terminal", terminal }, @@ -253,13 +239,6 @@ awful.util.mymainmenu = freedesktop.menu.build({ -- other triads can be put here } }) --- hide menu when mouse leaves it ---awful.util.mymainmenu.wibox:connect_signal("mouse::leave", function() awful.util.mymainmenu:hide() end) - ---menubar.utils.terminal = terminal -- Set the Menubar terminal for applications that require it --- }}} - - -- {{{ Screen -- Re-set wallpaper when a screen's geometry changes (e.g. different resolution) @@ -286,6 +265,7 @@ screen.connect_signal("arrange", function (s) end end end) + -- Create a wibox for each screen and add it awful.screen.connect_for_each_screen(function(s) beautiful.at_screen_connect(s) s.systray = wibox.widget.systray() @@ -307,66 +287,29 @@ awful.screen.connect_for_each_screen(function(s) bea |
