Compare commits
3 commits
ce13953994
...
34ab4270a5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
34ab4270a5 | ||
|
|
e83e11a694 | ||
|
|
a258401ad0 |
4 changed files with 42 additions and 0 deletions
|
|
@ -17,3 +17,6 @@ fi
|
|||
|
||||
|
||||
/bin/ln -sf `pwd`/readline/inputrc $HOME/.inputrc
|
||||
|
||||
|
||||
/bin/ln -sf `pwd`/vim/vimrc $HOME/.vim/vimrc
|
||||
|
|
|
|||
1
vim/vimrc
Normal file
1
vim/vimrc
Normal file
|
|
@ -0,0 +1 @@
|
|||
:set term=$TERM
|
||||
13
xfce4/autostart/bkuhn-autostart-commands.desktop
Normal file
13
xfce4/autostart/bkuhn-autostart-commands.desktop
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Version=0.9.4
|
||||
Type=Application
|
||||
Name=bkuhn-autostart-commands
|
||||
Comment=Shell Script of commands that run at xfce startup for bkuhn
|
||||
Exec=/home/bkuhn/public-config/xfce4/bkuhn-startup.sh
|
||||
OnlyShowIn=XFCE;
|
||||
RunHook=0
|
||||
StartupNotify=false
|
||||
Terminal=false
|
||||
Hidden=false
|
||||
|
||||
25
xfce4/bkuhn-startup.sh
Executable file
25
xfce4/bkuhn-startup.sh
Executable file
|
|
@ -0,0 +1,25 @@
|
|||
#!/bin/bash
|
||||
|
||||
export PATH=$HOME/bin:$PATH
|
||||
|
||||
PUBLIC_CONFIG_PATH=$HOME/public-config
|
||||
|
||||
set -x
|
||||
|
||||
echo "I AM HERE IN THE STARTUP" >> $HOME/X_STARTUP_LOG
|
||||
umask 077
|
||||
|
||||
PATH=$HOME/bin:$PATH
|
||||
export PATH
|
||||
|
||||
if [ -f ~/.airplane-mode ]; then
|
||||
# xrdb -merge FIXME
|
||||
echo Bring over airplane mode!
|
||||
else
|
||||
xrdb -merge $HOME/public-config/x11-and-wayland/Xdefaults
|
||||
fi
|
||||
|
||||
chmod 640 $HOME/.Xauthority
|
||||
|
||||
export GDK_USE_XFT=1
|
||||
export QT_XFT=1
|
||||
Loading…
Add table
Reference in a new issue