6 lines
109 B
Bash
Executable File
6 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# XProfile.
|
|
[ -f /etc/xprofile ] && source /etc/xprofile
|
|
[ -f ~/.xprofile ] && source ~/.xprofile
|