Bling and tags
This commit is contained in:
parent
48e4ba09b5
commit
fb12170c90
|
@ -77,9 +77,9 @@
|
||||||
|
|
||||||
;; Table of layouts to cover with awful.layout.inc, order matters.
|
;; Table of layouts to cover with awful.layout.inc, order matters.
|
||||||
(set awful.layout.layouts [
|
(set awful.layout.layouts [
|
||||||
|
bling.layout.mstab
|
||||||
awful.layout.suit.tile
|
awful.layout.suit.tile
|
||||||
bling.layout.centered
|
bling.layout.centered
|
||||||
bling.layout.mstab
|
|
||||||
awful.layout.suit.floating
|
awful.layout.suit.floating
|
||||||
;; awful.layout.suit.tile.left
|
;; awful.layout.suit.tile.left
|
||||||
;; awful.layout.suit.tile.bottom
|
;; awful.layout.suit.tile.bottom
|
||||||
|
@ -151,8 +151,8 @@
|
||||||
(awful.screen.connect_for_each_screen
|
(awful.screen.connect_for_each_screen
|
||||||
(fn [s]
|
(fn [s]
|
||||||
|
|
||||||
;; Each screen has its own tag table.
|
;; Each screen has its own tag table.
|
||||||
(awful.tag [ " " " " " " " " ] s (. awful.layout.layouts 1))
|
(awful.tag [ " " " " " " " " ] s (. awful.layout.layouts 1))
|
||||||
|
|
||||||
;; Make buffers on all sides so that tiled clients aren't pushed to edges
|
;; Make buffers on all sides so that tiled clients aren't pushed to edges
|
||||||
(set s.padding (dpi 10))
|
(set s.padding (dpi 10))
|
||||||
|
@ -173,6 +173,9 @@
|
||||||
:screen s
|
:screen s
|
||||||
:filter awful.widget.taglist.filter.all
|
:filter awful.widget.taglist.filter.all
|
||||||
:buttons taglist_buttons
|
:buttons taglist_buttons
|
||||||
|
:style {
|
||||||
|
:bg_focus beautiful.bg_focus
|
||||||
|
}
|
||||||
}))
|
}))
|
||||||
|
|
||||||
;; Create a tasklist widget
|
;; Create a tasklist widget
|
||||||
|
@ -184,6 +187,7 @@
|
||||||
:border_width 0
|
:border_width 0
|
||||||
:shape gears.shape.rounded_bar
|
:shape gears.shape.rounded_bar
|
||||||
:bg_focus beautiful.bg_normal
|
:bg_focus beautiful.bg_normal
|
||||||
|
:fg_focus beautiful.fg_normal
|
||||||
}
|
}
|
||||||
:layout {
|
:layout {
|
||||||
:spacing (dpi 20)
|
:spacing (dpi 20)
|
||||||
|
|
|
@ -74,16 +74,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
;; Tell qb to open primarily on the secondary monitor
|
;; Tell qb to open primarily on the secondary monitor
|
||||||
{
|
;; {
|
||||||
:rule_any {
|
;; :rule_any {
|
||||||
:class [
|
;; :class [
|
||||||
"qutebrowser"
|
;; "qutebrowser"
|
||||||
]
|
;; ]
|
||||||
}
|
;; }
|
||||||
:properties {
|
;; :properties {
|
||||||
:screen (screen.count)
|
;; :screen (screen.count)
|
||||||
}
|
;; }
|
||||||
}
|
;; }
|
||||||
;; floating windows
|
;; floating windows
|
||||||
{
|
{
|
||||||
:rule_any {
|
:rule_any {
|
||||||
|
|
|
@ -17,27 +17,45 @@ theme.font = "VictorMono Nerd Font SemiBold 10"
|
||||||
|
|
||||||
-- COLORS
|
-- COLORS
|
||||||
-- Try to build a theme off of SNAZZY
|
-- Try to build a theme off of SNAZZY
|
||||||
theme.bg_normal = "#282a36"
|
theme.base00 = "#282a36"
|
||||||
theme.bg_light = "#34353e"
|
theme.base01 = "#34353e"
|
||||||
theme.bg_focus = "#43454f"
|
theme.base02 = "#43454f"
|
||||||
|
theme.base03 = "#78787e"
|
||||||
|
theme.base04 = "#a5a5a9"
|
||||||
|
theme.base05 = "#e2e4e5"
|
||||||
|
theme.base06 = "#eff0eb"
|
||||||
|
theme.base07 = "#f1f1f0"
|
||||||
|
theme.base08 = "#ff5c57"
|
||||||
|
theme.base09 = "#ff9f43"
|
||||||
|
theme.base0A = "#f3f99d"
|
||||||
|
theme.base0B = "#5af78e"
|
||||||
|
theme.base0C = "#9aedfe"
|
||||||
|
theme.base0D = "#57c7ff"
|
||||||
|
theme.base0E = "#ff6ac1"
|
||||||
|
theme.base0F = "#b2643c"
|
||||||
|
|
||||||
|
theme.bg_normal = theme.base00
|
||||||
|
theme.bg_light = theme.base01
|
||||||
|
theme.bg_focus = theme.base0D -- Base02
|
||||||
theme.bg_minimize = "#78787e"
|
theme.bg_minimize = "#78787e"
|
||||||
theme.bg_urgent = "#ff5c57"
|
theme.bg_urgent = "#ff5c57"
|
||||||
theme.bg_systray = theme.bg_normal
|
theme.bg_systray = theme.bg_normal
|
||||||
|
|
||||||
theme.fg_normal = "#a5a5a9"
|
theme.fg_normal = "#a5a5a9"
|
||||||
theme.fg_focus = "#e2e4e5"
|
theme.fg_focus = theme.base02
|
||||||
theme.fg_urgent = "#e2e4e5"
|
theme.fg_urgent = "#e2e4e5"
|
||||||
theme.fg_minimize = "#e2e4e5"
|
theme.fg_minimize = "#e2e4e5"
|
||||||
|
|
||||||
theme.red = "#ff5c57"
|
theme.red = "#ff5c57"
|
||||||
|
|
||||||
theme.useless_gap = dpi(6)
|
theme.useless_gap = dpi(9)
|
||||||
theme.border_width = dpi(0)
|
theme.border_width = dpi(0)
|
||||||
theme.transparent = "#00000000"
|
theme.transparent = "#00000000"
|
||||||
theme.border_normal = "#00000000"
|
theme.border_normal = "#00000000"
|
||||||
theme.border_focus = "#00000000"
|
theme.border_focus = "#00000000"
|
||||||
theme.border_marked = "#00000000"
|
theme.border_marked = "#00000000"
|
||||||
|
|
||||||
|
theme.master_width_factor = 0.65
|
||||||
-- There are other variable sets
|
-- There are other variable sets
|
||||||
-- overriding the default one when
|
-- overriding the default one when
|
||||||
-- defined, the sets are:
|
-- defined, the sets are:
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
|
|
||||||
config_version: 2
|
config_version: 2
|
||||||
settings:
|
settings:
|
||||||
|
content.geolocation:
|
||||||
|
https://openweathermap.org: false
|
||||||
content.notifications:
|
content.notifications:
|
||||||
https://jelly.cochrun.xyz: true
|
https://jelly.cochrun.xyz: true
|
||||||
https://www.reddit.com: false
|
https://www.reddit.com: false
|
||||||
|
|
Loading…
Reference in a new issue