fix rofi theme foreground/background; fix alacritty default loading order
This commit is contained in:
parent
466d07923c
commit
466d4ec77d
15
config/alacritty.default.toml
Normal file
15
config/alacritty.default.toml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
[font.bold]
|
||||||
|
family = "Monaspace Argon"
|
||||||
|
|
||||||
|
[font.glyph_offset]
|
||||||
|
x = 0
|
||||||
|
y = 1
|
||||||
|
|
||||||
|
[font.italic]
|
||||||
|
family = "Monaspace Radon"
|
||||||
|
|
||||||
|
[font.normal]
|
||||||
|
family = "Monaspace Neon"
|
||||||
|
|
||||||
|
[window]
|
||||||
|
opacity = 0.8
|
@ -1,20 +1,5 @@
|
|||||||
import = [
|
import = [
|
||||||
|
"/home/w0ryn/.config/alacritty/default.toml",
|
||||||
"/home/w0ryn/.config/alacritty/theme.toml",
|
"/home/w0ryn/.config/alacritty/theme.toml",
|
||||||
"/home/w0ryn/.config/alacritty/local.toml",
|
"/home/w0ryn/.config/alacritty/local.toml",
|
||||||
]
|
]
|
||||||
|
|
||||||
[font.bold]
|
|
||||||
family = "Monaspace Argon"
|
|
||||||
|
|
||||||
[font.glyph_offset]
|
|
||||||
x = 0
|
|
||||||
y = 1
|
|
||||||
|
|
||||||
[font.italic]
|
|
||||||
family = "Monaspace Radon"
|
|
||||||
|
|
||||||
[font.normal]
|
|
||||||
family = "Monaspace Neon"
|
|
||||||
|
|
||||||
[window]
|
|
||||||
opacity = 0.8
|
|
||||||
|
@ -49,6 +49,7 @@ type = internal/xworkspaces
|
|||||||
|
|
||||||
label-active = %name%
|
label-active = %name%
|
||||||
label-active-background = ${colors.background-alt}
|
label-active-background = ${colors.background-alt}
|
||||||
|
label-active-foreground = ${colors.foreground-alt}
|
||||||
label-active-padding = 1
|
label-active-padding = 1
|
||||||
|
|
||||||
label-occupied = %name%
|
label-occupied = %name%
|
||||||
|
@ -29,18 +29,19 @@ configuration {
|
|||||||
background-colour: var(background);
|
background-colour: var(background);
|
||||||
foreground-colour: var(foreground);
|
foreground-colour: var(foreground);
|
||||||
alternate-background: var(background-alt);
|
alternate-background: var(background-alt);
|
||||||
|
alternate-foreground: var(selected);
|
||||||
normal-background: var(background);
|
normal-background: var(background);
|
||||||
normal-foreground: var(foreground);
|
normal-foreground: var(foreground);
|
||||||
urgent-background: var(urgent);
|
urgent-background: var(urgent);
|
||||||
urgent-foreground: var(background);
|
urgent-foreground: var(background);
|
||||||
active-background: var(active);
|
active-background: var(active);
|
||||||
active-foreground: var(background);
|
active-foreground: var(background);
|
||||||
selected-normal-background: var(selected);
|
selected-normal-background: var(background-alt);
|
||||||
selected-normal-foreground: var(background);
|
selected-normal-foreground: var(selected);
|
||||||
selected-urgent-background: var(active);
|
selected-urgent-background: var(background-alt);
|
||||||
selected-urgent-foreground: var(background);
|
selected-urgent-foreground: var(selected);
|
||||||
selected-active-background: var(urgent);
|
selected-active-background: var(urgent);
|
||||||
selected-active-foreground: var(background);
|
selected-active-foreground: var(selected);
|
||||||
alternate-normal-background: var(background);
|
alternate-normal-background: var(background);
|
||||||
alternate-normal-foreground: var(foreground);
|
alternate-normal-foreground: var(foreground);
|
||||||
alternate-urgent-background: var(urgent);
|
alternate-urgent-background: var(urgent);
|
||||||
@ -176,7 +177,7 @@ element normal.active {
|
|||||||
}
|
}
|
||||||
element selected.normal {
|
element selected.normal {
|
||||||
background-color: var(alternate-background);
|
background-color: var(alternate-background);
|
||||||
text-color: var(foreground-colour);
|
text-color: var(alternate-foreground);
|
||||||
}
|
}
|
||||||
element selected.urgent {
|
element selected.urgent {
|
||||||
background-color: var(selected-urgent-background);
|
background-color: var(selected-urgent-background);
|
||||||
|
@ -16,6 +16,7 @@ $DOTWRYN/colorschemes/active/alacritty.toml alacritty/theme.toml
|
|||||||
$DOTWRYN/colorschemes/active/alacritty.yaml alacritty/theme.yml
|
$DOTWRYN/colorschemes/active/alacritty.yaml alacritty/theme.yml
|
||||||
$DOTWRYN/colorschemes/active/getty.sh wryn/tty-colorscheme
|
$DOTWRYN/colorschemes/active/getty.sh wryn/tty-colorscheme
|
||||||
$DOTWRYN/config/alacritty.toml alacritty/alacritty.toml
|
$DOTWRYN/config/alacritty.toml alacritty/alacritty.toml
|
||||||
|
$DOTWRYN/config/alacritty.default.toml alacritty/default.toml
|
||||||
$DOTWRYN/config/alacritty.yaml alacritty/alacritty.yml
|
$DOTWRYN/config/alacritty.yaml alacritty/alacritty.yml
|
||||||
$DOTWRYN/config/bat.conf bat/config
|
$DOTWRYN/config/bat.conf bat/config
|
||||||
$DOTWRYN/config/code-activator.conf code-activator-zsh/settings.zsh
|
$DOTWRYN/config/code-activator.conf code-activator-zsh/settings.zsh
|
||||||
|
Loading…
Reference in New Issue
Block a user