This repository has been archived on 2025-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
home/.xsessionrc
2019-06-21 22:58:56 -05:00

13 lines
308 B
Bash
Executable File

#!/bin/sh
for term in mate-terminal lxterminal xfce4-terminal konsole urxvt xterm; do
if command -v "$term" > /dev/null 2>&1; then
export TERMINAL="$term"
break
fi
done
export PATH="$PATH:$HOME/.bin:$HOME/.local/bin"
if command -v go > /dev/null 2>&1; then
export PATH="$PATH:$HOME/.local/go/bin"
fi