awesomewm/config-template.lua

179 lines
4.1 KiB
Lua
Raw Normal View History

2022-11-04 22:17:45 -07:00
-- Copy this file to `config.lua` before starting awesome.
-- To enable a module, add a line like the ones below.
-- To disable a module, delete its config table or set
-- enabled to false.
config.picom = { enabled = true }
config.lock = { enabled = true, type = "i3lock"}
2022-07-16 19:27:12 -07:00
config.battery = { enabled = false }
config.backlight = { enabled = false }
config.simple_widgets = { enabled = true }
config.launcher = { enabled = true }
2022-07-17 09:01:24 -07:00
config.screenshot = { enabled = true }
2022-09-30 22:13:33 -07:00
config.keymap_popup = { enabled = true }
2022-07-16 19:27:12 -07:00
config.core = {
wallpaper = "/home/assets/wallpapers/Themed/Stellaris/Gigapixel/City.png",
--
-- Dynamic: a table of files and times
-- {file = "path", start_time = {hour, minute}}
--[[
2022-11-05 08:16:41 -07:00
wallpaper = {
{ file = "morning-file.png", start_time = {04, 00} },
{ file = "noon-file.png", start_time = {11, 00} },
{ file = "night-file.png", start_time = {19, 00} },
2022-11-05 08:16:41 -07:00
},
]]--
-- The position of the bar on each screen
bar_position = "bottom",
-- Bar size in dpi
bar_height = 50,
-- Size of bar widget margins
bar_margin = 3,
-- Preferred terminal.
terminal = "kitty",
-- Preferred browser.
browser = "firefox-developer-edition --new-tab",
-- Table of layouts.
-- This is not handled by the regular awesomewm facility.
-- It's handled by layoutmanager, to add extra features.
--
-- This table is a table of tables.
-- (see the example)
-- the tables it contains are groups, switched through using the main
-- layout keybind.
--
-- groups contain one or more layouts. The first layout is selected by default,
-- and is used whenever that group is seleced.
-- Likewise, the first group is the default, and is applied to all tags at the start.
layouts = {
{
awful.layout.suit.tile.left,
awful.layout.suit.tile,
},
{
awful.layout.suit.fair,
awful.layout.suit.fair.horizontal,
},
{
awful.layout.suit.floating,
}
--awful.layout.suit.tile.bottom,
--awful.layout.suit.tile.top,
--awful.layout.suit.spiral,
--awful.layout.suit.spiral.dwindle,
--awful.layout.suit.max,
--awful.layout.suit.max.fullscreen,
--awful.layout.suit.magnifier,
--awful.layout.suit.corner.nw,
--awful.layout.suit.corner.ne,
--awful.layout.suit.corner.sw,
--awful.layout.suit.corner.se,
},
-- Run these commands, in this order, when awesome starts.
startup_commands = {
"ibus-daemon --daemonize --replace --xim",
2022-07-17 09:01:24 -07:00
"keepassxc"
},
continuous_tag_updates = true,
2022-11-05 08:42:16 -07:00
-- Format:
-- {command, icon-name}
--
-- Icons files are in assets/apps,
-- Icon names are defined in assts/apps.lua.
bar_shortcuts = {
{
2022-07-23 16:48:02 -07:00
"thunar",
2022-07-23 16:27:13 -07:00
"folder"
},
{
"firefox-developer-edition",
2022-07-23 17:58:40 -07:00
"firefox_dev"
},
{
"thunderbird",
2022-07-23 16:27:13 -07:00
"thunderbird"
},
{
"onlyoffice-desktopeditors",
2022-07-23 16:27:13 -07:00
"writer"
},
{
"signal-desktop",
2022-07-23 16:27:13 -07:00
"signal"
},
{
"keepassxc",
2022-07-23 16:27:13 -07:00
"keepassx"
}
}
}
config.mpc = {
enabled = true,
-- If your MPC server has a password, do "passwd@host"
2022-11-05 08:42:16 -07:00
-- Default port is 6600, you probably won't need to change it.
host = "localhost",
2022-11-05 08:42:16 -07:00
port = 6600,
-- Fixed width of the mpc widget
width = 250,
}
config.volume = {
enabled = true,
2022-11-05 09:54:25 -07:00
-- How much % to change volume by
scroll_step = 2,
button_step = 5,
-- The pulse sink volume widgets and keybinds should use.
-- To use the default, keep this value an empty string.
2022-11-05 09:54:25 -07:00
-- Applies the --sink option to pamixer
pamixer_sink = ""
}
2022-07-16 19:27:12 -07:00
config.ibus = {
enabled = true,
-- The first entry will be activated at startup.
-- Use ibus engine to get the current engine name.
-- DUPLICATE IBUS_ENGINE VALUES WILL BREAK THE SWITCHER!
--
-- Some overlay layours require a switch to en:us first.
-- For example, switching from russian (xkb remap) to pinyin (ibus overlay on en:us)
-- will not work. `requires_engine` fixes this.
-- If it is defined, we will switch to that engine before switching to ibus_engine.
language_list = {
{
title = "English",
indicator_code = "en",
ibus_engine = "xkb:us::eng",
},
{
2022-10-04 22:19:37 -07:00
title = "LaTeX",
indicator_code = "∫x",
2022-10-04 22:19:37 -07:00
ibus_engine = "table:latex",
requires_engine = "xkb:us::eng"
2022-11-05 08:04:04 -07:00
},
{
title = "Russian",
indicator_code = "ru",
ibus_engine = "xkb:ru::rus"
}
}
2023-08-21 16:07:59 -07:00
}