upload dotfiles

This commit is contained in:
λmolinae 2025-03-19 22:04:07 -06:00
parent c79eb9fc65
commit ac383289c7
337 changed files with 3187 additions and 0 deletions

View file

@ -0,0 +1,19 @@
[colors]
background={background.strip}
foreground={foreground.strip}
regular0={color0.strip}
regular1={color1.strip}
regular2={color2.strip}
regular3={color3.strip}
regular4={color4.strip}
regular5={color5.strip}
regular6={color6.strip}
regular7={color7.strip}
bright0={color8.strip}
bright1={color9.strip}
bright2={color10.strip}
bright3={color11.strip}
bright4={color12.strip}
bright5={color13.strip}
bright6={color14.strip}
bright7={color15.strip}

View file

@ -0,0 +1,11 @@
[colors]
background={background.strip}ff
prompt={foreground.strip}ff
text={foreground.strip}ff
placeholder={foreground.strip}ff
input={foreground.strip}ff
match={foreground.strip}ff
selection={color1.strip}ff
selection-text={background.strip}ff
selection-match={foreground.strip}ff
border={color1.strip}ff

View file

@ -0,0 +1,10 @@
$color0 = rgb({color0.strip})
$color1 = rgb({color1.strip})
$color2 = rgb({color2.strip})
$color3 = rgb({color3.strip})
$color4 = rgb({color4.strip})
$color5 = rgb({color5.strip})
$color6 = rgb({color6.strip})
$color7 = rgb({color7.strip})
$color8 = rgb({color8.strip})
$wallpaper = "{wallpaper}"

View file

@ -0,0 +1,3 @@
background-color={background}
text-color={foreground}
border-color={color1}

View file

@ -0,0 +1,4 @@
background-color = {background.strip}
border-color = {color1.strip}
selection-color = {color1.strip}
text-color = {foreground.strip}

View file

@ -0,0 +1,14 @@
#define WALLPAPER "{wallpaper}"
/* Taken from https://github.com/djpohly/dwl/issues/466 */
#define COLOR(hex) {{ ((hex >> 24) & 0xFF) / 255.0f, \
((hex >> 16) & 0xFF) / 255.0f, \
((hex >> 8) & 0xFF) / 255.0f, \
(hex & 0xFF) / 255.0f }}
static const float rootcolor[] = COLOR(0x{color0.strip}ff);
static uint32_t colors[][3] = {{
/* fg bg border */
[SchemeNorm] = {{ 0x{color15.strip}ff, 0x{color0.strip}ff, 0x{color8.strip}ff }},
[SchemeSel] = {{ 0x{color15.strip}ff, 0x{color2.strip}ff, 0x{color1.strip}ff }},
[SchemeUrg] = {{ 0x{color15.strip}ff, 0x{color1.strip}ff, 0x{color2.strip}ff }},
}};

View file

@ -0,0 +1,34 @@
set recolor "true"
set recolor-keephue "true"
set completion-bg "{background}"
set completion-fg "{foreground}"
set completion-group-bg "{background}"
set completion-group-fg "{color2}"
set completion-highlight-bg "{foreground}"
set completion-highlight-fg "{background}"
set recolor-lightcolor "{background}"
set recolor-darkcolor "{foreground}"
set default-bg "{background}"
set inputbar-bg "{background}"
set inputbar-fg "{foreground}"
set notification-bg "{background}"
set notification-fg "{foreground}"
set notification-error-bg "{color1}"
set notification-error-fg "{foreground}"
set notification-warning-bg "{color1}"
set notification-warning-fg "{foreground}"
set statusbar-bg "{background}"
set statusbar-fg "{foreground}"
set index-bg "{background}"
set index-fg "{foreground}"
set index-active-bg "{foreground}"
set index-active-fg "{background}"
set render-loading-bg "{background}"
set render-loading-fg "{foreground}"
set window-title-home-tilde true
set statusbar-basename true
set selection-clipboard clipboard

View file

@ -0,0 +1,20 @@
set default-bg "{background}"
set default-fg "{foreground}"
set statusbar-bg "{background}"
set statusbar-fg "{foreground}"
set inputbar-bg "{background}"
set inputbar-fg "{foreground}"
set notification-bg "{background}"
set notification-fg "{foreground}"
set notification-error-bg "{background}"
set notification-error-fg "{foreground}"
set notification-warning-bg "{background}"
set notification-warning-fg "{foreground}"
set highlight-color "{color3}"
set highlight-active-color "{color6}"
set completion-bg "{color3}"
set completion-fg "{color6}"
set completion-highlight-bg "{color3}"
set completion-highlight-fg "{color6}"
set recolor-lightcolor "{background}"
set recolor-darkcolor "{foreground}"

View file

@ -0,0 +1,56 @@
{{
"schemeVersion": 2,
"enabled": true,
"fetchNews": true,
"theme": {{
"mode": 1,
"brightness": 100,
"contrast": 100,
"grayscale": 0,
"sepia": 0,
"useFont": false,
"fontFamily": "Open Sans",
"textStroke": 0,
"engine": "dynamicTheme",
"stylesheet": "",
"darkSchemeBackgroundColor": "{color0}",
"darkSchemeTextColor": "{color15}",
"lightSchemeBackgroundColor": "#{color0.lighten(15%)}",
"lightSchemeTextColor": "{color15}",
"scrollbarColor": "auto",
"selectionColor": "auto",
"styleSystemControls": false,
"lightColorScheme": "Default",
"darkColorScheme": "Default",
"immediateModify": false
}},
"presets": [],
"customThemes": [],
"enabledByDefault": true,
"enabledFor": [],
"disabledFor": [],
"changeBrowserTheme": false,
"syncSettings": true,
"syncSitesFixes": true,
"automation": {{
"enabled": false,
"mode": "",
"behavior": "OnOff"
}},
"time": {{
"activation": "18:00",
"deactivation": "9:00"
}},
"location": {{
"latitude": null,
"longitude": null
}},
"previewNewDesign": true,
"enableForPDF": true,
"enableForProtectedPages": true,
"enableContextMenus": false,
"detectDarkTheme": false,
"displayedNews": [
"thanks-2023"
]
}}