All pastes #1845517 Raw Edit

Something

public shellscript v1 · immutable
#1845517 ·published 2010-03-19 08:30 UTC
rendered paste body
if [[ "$display" =~ "Win_theme" ]]then  if [ "$WM" == "pekwm" ]    if [ `cat $HOME/.pekwm/config` ]    then      Win_theme=`cat $HOME/.pekwm/config | grep Theme | awk -F"/" {'print $4'} | sed s/\"//`      Win_theme="$labelcolor WM Theme:$textcolor $Win_theme"    else      Win_theme="$labelcolor WM Theme:$textcolor Not Found"    fi  elif [ "$WM" == "openbox" ]  then    if [ `cat $HOME/.config/openbox/rc.xml` ]    then      Win_theme=`cat $HOME/.config/openbox/rc.xml | grep -m 1 \<name\>.*\</name\> | sed -e 's/.*<name>//' -e 's/<\/name>//'`      Win_theme="$labelcolor WM Theme:$textcolor $Win_theme"    else      Win_theme="$labelcolor WM Theme:$textcolor Not Found"    fi  fifi