Colorscheme stuff

This commit is contained in:
2026-03-08 20:51:14 +00:00
parent 0918d86c6c
commit 99bcc94970
11 changed files with 2449 additions and 78 deletions

View File

@@ -1,4 +1,4 @@
# source = ~/.config/omarchy/current/theme/hyprlock.conf
source = ~/.cache/wal/colors-hyprland.conf
general {
ignore_empty_input = true
@@ -6,8 +6,8 @@ general {
background {
monitor =
color = $color
path = ~/.config/station/current/background
color = $background
path = $wallpaper
blur_passes = 3
}
@@ -22,15 +22,15 @@ input-field {
halign = center
valign = center
inner_color = $inner_color
outer_color = $outer_color
inner_color = $background
outer_color = $color14
outline_thickness = 4
font_family = JetBrainsMono Nerd Font
font_color = $font_color
font_color = $foreground
placeholder_text = Enter Password
check_color = $check_color
check_color = $color4
fail_text = <i>$FAIL ($ATTEMPTS)</i>
rounding = 0

View File

@@ -1,6 +1,11 @@
# Variables
$activeBorderColor = rgba(33ccffee) rgba(00ff99ee) 45deg
$inactiveBorderColor = rgba(595959aa)
# $activeBorderColor = rgba(33ccffee) rgba(00ff99ee) 45deg
# $inactiveBorderColor = rgba(595959aa)
source = ~/.cache/wal/colors-hyprland.conf
$activeBorderColor = $color14
$inactiveBorderColor = $background
# https://wiki.hyprland.org/Configuring/Variables/#general
general {

28
.config/swayosd/style.css Normal file
View File

@@ -0,0 +1,28 @@
@import "../../.cache/wal/colors-waybar.css";
window {
border-radius: 0;
opacity: 0.97;
border: 2px solid @foreground;
background-color: @background;
}
label {
font-family: 'Fira Code Nerd Font';
font-size: 11pt;
color: @foreground;
}
image {
color: @foreground;
}
progressbar {
border-radius: 0;
}
progress {
background-color: @color14;
}

View File

@@ -1,6 +1,6 @@
force_keyboard_focus = true # forces keyboard focuses to stay in Walker
selection_wrap = true # wrap list if at bottom or top
# theme = "station-default" # theme to use
theme = "station-default" # theme to use
# additional_theme_location = "~/.config/walker/themes/"
hide_action_hints = true # globally hide the action hints

View File

@@ -1,4 +1,4 @@
/* @import "../../../../.config/station/walker.css"; */
@import "../../../../.cache/wal/colors-waybar.css";
* {
all: unset;
@@ -7,7 +7,7 @@
* {
font-family: monospace;
font-size: 18px;
color: @text;
color: @foreground;
}
scrollbar {
@@ -23,9 +23,9 @@ scrollbar {
}
.box-wrapper {
background: alpha(@base, 0.95);
background: alpha(@background, 0.95);
padding: 20px;
border: 2px solid @border;
border: 2px solid @foreground;
}
.preview-box {
@@ -35,7 +35,7 @@ scrollbar {
}
.search-container {
background: @base;
background: @background;
padding: 10px;
}
@@ -75,7 +75,7 @@ child:selected .item-box {
}
child:selected .item-box * {
color: @selected-text;
color: @color14;
}
.item-box {

View File

@@ -1,4 +1,4 @@
/* @import "../omarchy/current/theme/waybar.css"; */
@import "../../.cache/wal/colors-waybar.css";
* {
background-color: @background;
@@ -7,7 +7,7 @@
border: none;
border-radius: 0;
min-height: 0;
font-family: 'JetBrainsMono Nerd Font';
font-family: 'Fira Code Nerd Font';
font-size: 12px;
}

2332
.config/zsh/.zcompdump Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -188,3 +188,7 @@ source /usr/share/zsh/plugins/fast-syntax-highlighting/fast-syntax-highlighting.
eval "$(zoxide init --cmd cd zsh)"
eval "$(try init ~/src/tries)"
[ -f ~/.cache/wal/sequences ] && \cat ~/.cache/wal/sequences
[ -f ~/.cache/wal/colors-tty.sh ] && source ~/.cache/wal/colors-tty.sh

View File

@@ -13,6 +13,8 @@ CURRENT_BACKGROUND_LINK="$HOME/.local/state/station/background"
# Create symlink to the new background
ln -nsf "$BACKGROUND" "$CURRENT_BACKGROUND_LINK"
wal -i "$CURRENT_BACKGROUND_LINK"
# Kill existing swaybg and start new one
pkill -x swaybg
setsid uwsm-app -- swaybg -i "$CURRENT_BACKGROUND_LINK" -m fill >/dev/null 2>&1 &

View File

@@ -5,8 +5,8 @@ restart_services() {
systemctl --user restart elephant.service
fi
if systemctl --user is-enabled app-walker@autostart.service &>/dev/null; then
systemctl --user restart app-walker@autostart.service
if systemctl --user is-enabled walker &>/dev/null; then
systemctl --user restart walker
else
echo -e "\e[31mUnable to restart Walker -- RESTART MANUALLY\e[0m"
fi