-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrc.lua
31 lines (25 loc) · 832 Bytes
/
rc.lua
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
-- If LuaRocks is installed, make sure that packages installed through it are
-- found (e.g. lgi). If LuaRocks is not installed, do nothing.
pcall(require, "luarocks.loader")
gears = require("gears")
awful = require("awful")
require("awful.autofocus")
wibox = require("wibox")
beautiful = require("beautiful")
naughty = require("naughty")
menubar = require("menubar")
hotkeys_popup = require("awful.hotkeys_popup")
require("awful.hotkeys_popup.keys")
require "error_handler"
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/custom/theme.lua")
terminal = "alacritty"
browser = "google-chrome-stable"
editor = os.getenv("EDITOR") or "nvim"
editor_cmd = terminal .. " -e " .. editor
modkey = "Mod4"
require "layouts"
require "panel"
require "key_bindings"
require "client_buttons"
require "rules"
require "autostart"