mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-24 22:58:38 +01:00
4f280b0780
Use bspwm with XDG_CURRENT_DESKTOP=KDE instead.
15 lines
378 B
Bash
15 lines
378 B
Bash
#!/bin/sh
|
|
|
|
# Source the colors from wal
|
|
source "${HOME}/.cache/wal/colors.sh"
|
|
|
|
# Set the border colors
|
|
bspc config normal_border_color "$color1"
|
|
bspc config active_border_color "$color2"
|
|
bspc config focused_border_color "$color15"
|
|
bspc config presel_feedback_color "$color1"
|
|
|
|
# Restart dunst with the new color scheme
|
|
pkill dunst
|
|
dunst -conf "${HOME}/.cache/wal/dunstrc" &
|