summaryrefslogtreecommitdiffstats
path: root/awesome
diff options
context:
space:
mode:
authorGravatar Tom Willemse2015-07-26 21:50:20 +0200
committerGravatar Tom Willemse2015-07-26 21:50:20 +0200
commitceff401cc8992d25541aa187caf7fa11d939b029 (patch)
treedde80c6d382a9da3a30ad3e8f49b4892207e2610 /awesome
parent38c9454e2b62554e02f61f3480fe52ce32440bf2 (diff)
downloaddotfiles-ceff401cc8992d25541aa187caf7fa11d939b029.tar.gz
dotfiles-ceff401cc8992d25541aa187caf7fa11d939b029.zip
Stop using avandu
Last time I tried one of the dependencies couldn't be loaded.
Diffstat (limited to 'awesome')
-rw-r--r--awesome/.config/awesome/rc.lua14
1 files changed, 1 insertions, 13 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index 1afd053..1a99a2f 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -14,18 +14,10 @@ local lfs = require("lfs")
local posix = require("posix")
local hostname = posix.uname("%n")
-local avandu = nil
naughty.config.defaults.bg = "#3d3d3d"
naughty.config.defaults.icon_size = 32
-if hostname == "drd" then
- package.path =
- '/home/slash/projects/avandu-lua/lua/?.lua;' .. package.path
-
- avandu = require 'avandu'
-end
-
local maildir_base = os.getenv("HOME") .. "/documents/mail/"
table.insert(menubar.menu_gen.all_menu_dirs,
@@ -96,10 +88,6 @@ end
-- Themes define colours, icons, font and wallpapers.
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/default/theme.lua")
-if avandu then
- avandu.ttrss_url = "https://ryuslash.org/tt-rss/api/"
-end
-
-- This is used later as the default terminal and editor to run.
terminal = "urxvtc"
editor = "emacsclient"
@@ -326,7 +314,7 @@ for s = 1, screen.count() do
local right_layout = wibox.layout.fixed.horizontal()
if s == 1 then
right_layout:add(mykeyringlist)
- if avandu then right_layout:add(myrsslist) end
+ if hostname == "drd" then right_layout:add(myrsslist) end
right_layout:add(mymailwidget)
-- for k, w in pairs(mailwidgets) do