mirror of
https://github.com/tomru/hlwm-config.git
synced 2026-03-03 06:27:20 +01:00
28 lines
611 B
Bash
Executable File
28 lines
611 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
hc() {
|
|
herbstclient "$@"
|
|
}
|
|
|
|
source ./gruvbox_colors.sh
|
|
|
|
./wallpaper.sh
|
|
|
|
# frame/window styling
|
|
hc set frame_border_active_color "$GRUVBOX_DARK4"
|
|
hc set frame_border_normal_color "$GRUVBOX_DARK0"
|
|
hc set frame_bg_transparent 1
|
|
hc set frame_border_width 1
|
|
hc set frame_gap 4
|
|
hc set frame_padding 0
|
|
hc set smart_frame_surroundings 1
|
|
|
|
hc set window_border_width 1
|
|
hc set window_border_inner_width 0
|
|
hc set window_border_normal_color "$GRUVBOX_DARK1"
|
|
hc set window_border_active_color "$GRUVBOX_BRIGHT_AQUA"
|
|
hc set window_gap 0
|
|
hc set smart_window_surroundings 1
|
|
|
|
hc set mouse_recenter_gap 0
|