AwesomeWM configuration files
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
local wibox = require("wibox") |
|
|
local beautiful = require("beautiful") |
|
|
|
|
|
local xresources = require("beautiful.xresources") |
|
|
local dpi = xresources.apply_dpi |
|
|
|
|
|
local apps = require("config.apps") |
|
|
local box = require("modules.dock.dockbox") |
|
|
|
|
|
--local browser = box(beautiful.yellow, beautiful.yellow_light, "", apps.browser) |
|
|
--local fileexplorer = box(beautiful.blue, beautiful.blue_light, "", apps.fileexplorer) |
|
|
--local terminal = box(beautiful.fg_normal, beautiful.fg_focus, "", apps.terminal) |
|
|
--local intellij = box(beautiful.red, beautiful.red_light, "", "intellij-idea-ultimate-edition") |
|
|
--local gimp = box(beautiful.cyan, beautiful.cyan_light, "", "gimp") |
|
|
--local spotify = box(beautiful.green, beautiful.green_light, "", "spotify") |
|
|
|
|
|
return wibox.widget { |
|
|
{ |
|
|
nil, |
|
|
{ |
|
|
nil, |
|
|
{ |
|
|
browser, |
|
|
fileexplorer, |
|
|
terminal, |
|
|
intellij, |
|
|
gimp, |
|
|
spotify, |
|
|
spacing = dpi(8), |
|
|
layout = wibox.layout.fixed.vertical |
|
|
}, |
|
|
nil, |
|
|
expand = "none", |
|
|
layout = wibox.layout.align.vertical |
|
|
}, |
|
|
nil, |
|
|
expand = "none", |
|
|
layout = wibox.layout.align.horizontal |
|
|
}, |
|
|
widget = wibox.container.background, |
|
|
}
|
|
|
|