38 lines
674 B
Lua
38 lines
674 B
Lua
local M = {}
|
|
|
|
M.keys = {
|
|
mod = "Mod4",
|
|
alt = "Mod1",
|
|
}
|
|
|
|
M.apps = {
|
|
terminal = "wezterm",
|
|
launcher = "rofi -no-lazy-grab -show drun -theme ~/.config/rofi/launcher.rasi",
|
|
browser = "firefox",
|
|
file_manager = "thunar",
|
|
editor = os.getenv("EDITOR") or "nvim",
|
|
}
|
|
|
|
M.apps.start_editor = M.apps.terminal .. "-e" .. M.apps.editor
|
|
M.apps.music_player = M.apps.terminal .. "--class music -e ncmpcpp"
|
|
|
|
M.widget = {}
|
|
|
|
M.widget.weather = {
|
|
api_key = "e894c3e6c1a9d2217eee94791e845c96",
|
|
coordinates = { lat = "47.773140", lon = "-122.303660" },
|
|
}
|
|
|
|
M.widget.github = {
|
|
username = "punkfairie",
|
|
}
|
|
|
|
M.widget.mic = {
|
|
name = "",
|
|
}
|
|
|
|
M.widget.disk = {
|
|
name = "/dev/sdb3",
|
|
}
|
|
|
|
return M
|