aboutsummaryrefslogtreecommitdiffstats
path: root/test.d/mdsinitrc
blob: ca2822455718e56b72338c13889466957a825323 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

echo "Successfully spawned mdsinitrc. "


export XDG_CONFIG_HOME="${OLD_XDG_CONFIG_HOME}"
unset OLD_XDG_CONFIG_HOME
if [ -z "${XDG_CONFIG_HOME}" ]; then
    unset XDG_CONFIG_HOME
fi
if which terminator 2>/dev/null >&2; then
    exec terminator
else
    exec xterm
fi