Updates
This commit is contained in:
parent
05eb9949bb
commit
2bf0512998
|
@ -287,7 +287,7 @@ image_backend="w3m"
|
|||
|
||||
# Image Source
|
||||
# --image wall, ascii, /path/to/img, /path/to/dir/, off
|
||||
image="wall"
|
||||
image="~/.wallpaper"
|
||||
|
||||
# Thumbnail directory
|
||||
thumbnail_dir="$HOME/.cache/thumbnails/neofetch"
|
||||
|
@ -314,7 +314,7 @@ image_size="360px"
|
|||
|
||||
# Right gap between image and text
|
||||
# --gap num
|
||||
gap=4
|
||||
gap=1
|
||||
|
||||
# Image offsets
|
||||
# Only works with the w3m backend.
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
[colors]
|
||||
foreground = ${xrdb:color7:#222222}
|
||||
background = #bb111111
|
||||
background = ${xrdb:color0:#111111}
|
||||
|
||||
tray-bg = #222222
|
||||
|
||||
|
@ -372,7 +372,7 @@ ramp-foreground = ${colors.icon}
|
|||
|
||||
[settings]
|
||||
screenchange-reload = true
|
||||
pseudo-transparency = true
|
||||
pseudo-transparency = false
|
||||
compositing-background = source
|
||||
compositing-foreground = source
|
||||
compositing-border = source
|
||||
|
@ -390,5 +390,6 @@ type = custom/script
|
|||
exec = $DOTFILES_PATH/de/bar/mic.bash
|
||||
tail = true
|
||||
format = <label>
|
||||
label-foreground = ${colors.icon}
|
||||
label = %output%
|
||||
click-left = kill -USR1 %pid%
|
||||
|
|
|
@ -1,14 +1,2 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
feh --no-fehbg --bg-fill \
|
||||
"${HOME}/.wallpaper" \
|
||||
"${HOME}/.wallpaper2" \
|
||||
"${HOME}/.wallpaper3" \
|
||||
"${HOME}/.wallpaper4" \
|
||||
"${HOME}/.wallpaper5" \
|
||||
"${HOME}/.wallpaper6" \
|
||||
"${HOME}/.wallpaper7" \
|
||||
"${HOME}/.wallpaper8" \
|
||||
"${HOME}/.wallpaper9" \
|
||||
"${HOME}/.wallpaper_last" \
|
||||
2>/dev/null
|
||||
#!/bin/sh
|
||||
feh --no-fehbg --bg-fill '/home/daniel/img/wall/forest-sapling-vignette.jpg'
|
||||
|
|
|
@ -14,10 +14,10 @@ active-opacity = 1.0;
|
|||
frame-opacity = 1.0;
|
||||
inactive-opacity-override = false;
|
||||
|
||||
fading = true;
|
||||
fading = false;
|
||||
fade-in-step = 0.06;
|
||||
fade-out-step = 0.06;
|
||||
inactive-dim = 0.2;
|
||||
inactive-dim = 0.0;
|
||||
|
||||
focus-exclude = [ "n:e:rofi" ]
|
||||
|
||||
|
@ -26,9 +26,9 @@ mark-ovredir-focused = false;
|
|||
detect-rounded-corners = true;
|
||||
detect-client-opacity = false;
|
||||
|
||||
vsync = true;
|
||||
backend = "glx";
|
||||
refresh-rate = 0;
|
||||
vsync = true;
|
||||
refresh-rate = 100;
|
||||
glx-no-stencil = true;
|
||||
glx-no-rebind-pixmap = true;
|
||||
glx-copy-from-front = false;
|
||||
|
@ -39,13 +39,21 @@ dbe = false;
|
|||
detect-transient = true;
|
||||
detect-client-leader = true;
|
||||
invert-color-include = [ ];
|
||||
blur-background = false;
|
||||
blur-background-frame = false;
|
||||
|
||||
blur-background = true;
|
||||
blur-background-frame = true;
|
||||
blur-background-fixed = true;
|
||||
|
||||
blur-kern = "3x3box";
|
||||
blur-method = "kawase";
|
||||
blur-strength = "50";
|
||||
|
||||
opacity-rule
|
||||
|
||||
wintypes :
|
||||
{
|
||||
tooltip : { fade = false; shadow = false; opacity = 0.75; };
|
||||
dock : { fade = false; shadow = false; opacity = 1.0; };
|
||||
dnd : { fade = false; shadow = false; opacity = 0.75; };
|
||||
tooltip : { fade = false; shadow = false; opacity = 1.0; };
|
||||
dock : { fade = false; opacity = 1.0; };
|
||||
dnd : { fade = false; shadow = false; opacity = 1.0; };
|
||||
};
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
[🖥️ Upstream][upstream] • [🐙 GitHub Mirror][github]
|
||||
|
||||
![Desktop Screenshot][desktop-screenshot]
|
||||
|
||||
This repository contains the majority of application or OS configuration files
|
||||
I use on a daily basis. I keep the here and public in an effort to inform others
|
||||
who may not know either how to go about organizing such files or to learn how to
|
||||
|
@ -80,3 +82,4 @@ Here are some bullet points on my workflow:
|
|||
|
||||
[upstream]: https://git.faceless.lytedev.io/lytedev/dotfiles
|
||||
[github]: https://github.com/lytedev/dotfiles
|
||||
[desktop-screenshot]: https://lyte.dev/files/unix/desktop-screenshot.png
|
||||
|
|
Reference in a new issue