#!/bin/sh

FILE=/etc/dbus-1/system.d/alarmd.conf

if [ -e $FILE ] ; then
  sed -i "s/user=\"user\"/user=\"$USER\"/" $FILE
fi

