17 lines
385 B
Bash
17 lines
385 B
Bash
#!/bin/bash
|
|
#
|
|
# SCRIPT NAME:
|
|
# .xprofile
|
|
#
|
|
# AUTHOR:
|
|
# Severin Kaderli <severin.kaderli@gmail.com>
|
|
#
|
|
# DESCRIPTION:
|
|
# This is the startup script when LightDM starts. Currently it sources .xsetup
|
|
# and .bash_profile so it's almost the same as if you start the x-server
|
|
# manually.
|
|
#
|
|
# USAGE:
|
|
# This script is executed when LightDM starts.
|
|
. "${HOME}/.xsetup"
|
|
. "${HOME}/.bash_profile"
|