Last active
August 29, 2015 14:03
-
-
Save actionless/229eef7795915068bad9 to your computer and use it in GitHub Desktop.
config/local.lua example for actionless/awesome_config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local awful = require("awful") | |
local local_config = {} | |
function local_config.init(awesome_context) | |
awesome_context.config = { | |
wlan_if = 'wlp4s0', | |
eth_if = 'enp0s25', | |
net_preset = 'bond', | |
music_players = { 'spotify', 'clementine', }, | |
} | |
--awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/vertex/theme.lua" | |
--awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/lcars_xresources/theme.lua" | |
awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/lcars-xresources-hidpi/theme.lua" | |
--awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/pokemon_dark/theme.lua" | |
--awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/monovedek/theme.lua" | |
--awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/pokemon_light/theme.lua" | |
--awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/lcars_modern/theme.lua" | |
--awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/noble_dark/theme.lua" | |
--awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/pokemon-xresources/theme.lua" | |
--awesome_context.theme_dir = awful.util.getdir("config") .. "/themes/pro-medium-light/theme.lua" | |
awesome_context.autorun = { | |
--"~/.scripts/tp_unmute", | |
--"killall compton ; compton", | |
} | |
awesome_context.volume_widget='apw' | |
return awesome_context | |
end | |
return local_config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment