This repository has been archived on 2025-01-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-11-15 16:06:31 -06:00

6 lines
159 B
Bash
Executable File

#! /usr/bin/env bash
[ -r ~/.Xresources ] && xrdb ~/.Xresources
for file in $XDG_CONFIG_HOME/xrdb/*.xresources; do
[ -r "$file" ] && xrdb -merge "$file"
done