Mako : Transparent bkg.
This commit is contained in:
parent
1504157215
commit
a7e721ca8e
|
@ -6,9 +6,9 @@
|
||||||
polarity = "dark";
|
polarity = "dark";
|
||||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
|
# base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
|
||||||
opacity = {
|
opacity = {
|
||||||
applications = 1.0;
|
applications = 0.85;
|
||||||
terminal = 0.85;
|
terminal = 0.85;
|
||||||
popups = 1.0;
|
popups = 0.85;
|
||||||
desktop = 0.85;
|
desktop = 0.85;
|
||||||
};
|
};
|
||||||
cursor = {
|
cursor = {
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
# Split directions.
|
# Split directions.
|
||||||
bindsym $mod+${key.sway.window.split.horizontal} splith
|
bindsym $mod+${key.sway.window.split.horizontal} splith
|
||||||
bindsym $mod+${key.sway.window.split.vertical} splitv
|
bindsym $mod+${key.sway.window.split.vertical} splitv
|
||||||
|
|
||||||
# Switch the current container between different layout styles.
|
# Switch the current container between different layout styles.
|
||||||
bindsym $mod+${key.sway.window.layout.toggle} layout toggle split tabbed
|
bindsym $mod+${key.sway.window.layout.toggle} layout toggle split tabbed
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
{ style, util, setting, ... }: {
|
{ style, util, setting, ... }: let
|
||||||
|
alpha = style.opacity.inactive.hex;
|
||||||
|
in {
|
||||||
config = util.trimTabs ''
|
config = util.trimTabs ''
|
||||||
anchor=top-center
|
anchor=top-center
|
||||||
default-timeout=${toString(setting.popup.timeout.ms)}
|
default-timeout=${toString(setting.popup.timeout.ms)}
|
||||||
font=${style.font.serif.name} ${toString(style.font.size.popup)}
|
font=${style.font.serif.name} ${toString(style.font.size.popup)}
|
||||||
background-color=#${style.color.bg.dark}
|
background-color=#${style.color.bg.dark}${alpha}
|
||||||
border-color=#${style.color.bg.regular}
|
border-color=#${style.color.bg.regular}${alpha}
|
||||||
text-color=#${style.color.fg.light}
|
text-color=#${style.color.fg.light}
|
||||||
height=120
|
height=120
|
||||||
icons=0
|
icons=0
|
||||||
|
|
Loading…
Reference in a new issue