commit b2e3f288e4340ff85549875545a7646eea96c1a5
parent 99afa5b5ba9eee5b55d1d569c11e4e5fc2d85d01
Author: dudley <pyratebeard@gmail.com>
Date: Fri, 9 Sep 2016 12:28:22 +0100
title figlet font added. library list tidied up
Diffstat:
1 file changed, 40 insertions(+), 33 deletions(-)
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
@@ -1,37 +1,44 @@
---[[
-
- pyratebeard awesomewm config
-
- author: pyratebeard <root@pyratebeard.net>
- code: http://code.pyratebeard.net/awesome
-
---]]
-
--- Standard awesome library
-local gears = require("gears")
-local awful = require("awful")
-awful.rules = require("awful.rules")
- require("awful.autofocus")
-
--- Widget and layout library
-local wibox = require("wibox")
-
--- Theme handling library
-local beautiful = require("beautiful")
-
--- Notification library
-local naughty = require("naughty")
-local menubar = require("menubar")
-
--- Dropdown terminal
-local drop = require("scratchdrop")
-
--- Extra layouts
-local lain = require("lain")
-
+--
+-- __ __ __ __ __ ____ ___ ___ ___ __
+-- /'__`\ /\ \/\ \/\ \ /'__`\ /',__\ / __`\ /' __` __`\ /'__`\
+-- /\ \L\.\_\ \ \_/ \_/ \/\ __//\__, `\/\ \L\ \/\ \/\ \/\ \/\ __/
+-- \ \__/.\_\\ \___x___/'\ \____\/\____/\ \____/\ \_\ \_\ \_\ \____\
+-- \/__/\/_/ \/__//__/ \/____/\/___/ \/___/ \/_/\/_/\/_/\/____/
+--
+-- awesome wm config
+--
+-- author: pyratebeard <root@pyratebeard.net>
+-- code: http://code.pyratebeard.net/awesome
+--
+
+-- standard libraries
+gears = require("gears")
+awful = require("awful")
+awful.rules = require("awful.rules")
+require("awful.autofocus")
+
+-- widget library
+wibox = require("wibox")
+
+-- theme library
+beautiful = require("beautiful")
+
+-- notification libraries
+naughty = require("naughty")
+menubar = require("menubar")
+
+-- menubar widget library
+vicious = require("vicious")
+
+-- dropdown terminal libraries
+drop = require("scratchdrop")
+
+-- extra layouts library
+lain = require("lain")
+
+-- <not sure what this does...>
awful.util.spawn_with_shell("xcompmgr -cF &")
-vicious = require("vicious")
-- {{{ Error handling
-- Check if awesome encountered an error during startup and fell back to
@@ -60,7 +67,7 @@ end
-- {{{ Variable definitions
-- Themes define colours, icons, font and wallpapers.
- beautiful.init("/home/pyratebeard/.config/awesome/themes/decker-cyan/theme.lua")
+ beautiful.init("/home/dudley/.config/awesome/themes/decker-cyan/theme.lua")
-- This is used later as the default terminal and editor to run.
terminal = "urxvt"