You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
410 B

#!/bin/bash
I3C_CFGDIR=$HOME/.config/i3
I3C_SRCDIR=$HOME/.cfg_src/i3
MYHOST=`hostname`;
I3C_LOCCFG=$I3C_SRCDIR/config.$MYHOST.local;
I3B_CFG=$HOME/.i3blocks.conf;
if [ ! -e $I3C_LOCCFG ]
then
cp $I3C_SRCDIR/config.local.dist $I3C_LOCCFG;
fi
if [ ! -e $I3C_CFGDIR ]
then
mkdir -p $I3C_CFGDIR;
fi
cat $I3C_SRCDIR/config.base $I3C_LOCCFG > $I3C_CFGDIR/config;
cat $I3C_SRCDIR/i3blocks.base > $I3B_CFG;