From 0827eefbaea40d9197fdfd126c914a908fa14916 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Fri, 22 Feb 2013 15:10:39 +0100 Subject: Fix typo in set_xresources filename --- .scripts/set_xresources.sh | 12 ++++++++++++ .scripts/set_xressources.sh | 12 ------------ 2 files changed, 12 insertions(+), 12 deletions(-) create mode 100755 .scripts/set_xresources.sh delete mode 100755 .scripts/set_xressources.sh (limited to '.scripts') diff --git a/.scripts/set_xresources.sh b/.scripts/set_xresources.sh new file mode 100755 index 0000000..a51650b --- /dev/null +++ b/.scripts/set_xresources.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +#find ~/.config/ \ +# -mindepth 2 -maxdepth 2 \ +# -type f -iname "*.xdefaults" \ +# -exec xrdb -merge {} \; + +# It is faster to concat first and execute xrdb only once. +find ~/.config/ \ + -mindepth 2 -maxdepth 2 \ + -type f -iname "*.xdefaults" \ + -exec cat {} + | xrdb -merge diff --git a/.scripts/set_xressources.sh b/.scripts/set_xressources.sh deleted file mode 100755 index a51650b..0000000 --- a/.scripts/set_xressources.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -#find ~/.config/ \ -# -mindepth 2 -maxdepth 2 \ -# -type f -iname "*.xdefaults" \ -# -exec xrdb -merge {} \; - -# It is faster to concat first and execute xrdb only once. -find ~/.config/ \ - -mindepth 2 -maxdepth 2 \ - -type f -iname "*.xdefaults" \ - -exec cat {} + | xrdb -merge -- cgit