Add control center fix and a .profile file
This commit is contained in:
parent
7ef5f1e30e
commit
904482588e
@ -20,6 +20,7 @@ git clone https://github.com/pyenv/pyenv.git ~/.pyenv
|
|||||||
# Bunch of symlinks
|
# Bunch of symlinks
|
||||||
ln -sfv ~/dotfiles ~/.dotfiles
|
ln -sfv ~/dotfiles ~/.dotfiles
|
||||||
#ln -sfv "$DOTFILES_DIR/run/.bash_profile" ~
|
#ln -sfv "$DOTFILES_DIR/run/.bash_profile" ~
|
||||||
|
ln -sfv "$DOTFILES_DIR/run/.profile" ~
|
||||||
ln -sfv "$DOTFILES_DIR/run/.bashrc" ~
|
ln -sfv "$DOTFILES_DIR/run/.bashrc" ~
|
||||||
ln -sfv "$DOTFILES_DIR/git/.gitconfig" ~
|
ln -sfv "$DOTFILES_DIR/git/.gitconfig" ~
|
||||||
ln -sfv "$DOTFILES_DIR/system/.vimrc" ~
|
ln -sfv "$DOTFILES_DIR/system/.vimrc" ~
|
||||||
|
23
run/.profile
Normal file
23
run/.profile
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# ~/.profile: executed by the command interpreter for login shells.
|
||||||
|
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
||||||
|
# exists.
|
||||||
|
# see /usr/share/doc/bash/examples/startup-files for examples.
|
||||||
|
# the files are located in the bash-doc package.
|
||||||
|
|
||||||
|
# the default umask is set in /etc/profile; for setting the umask
|
||||||
|
# for ssh logins, install and configure the libpam-umask package.
|
||||||
|
#umask 022
|
||||||
|
|
||||||
|
# if running bash
|
||||||
|
if [ -n "$BASH_VERSION" ]; then
|
||||||
|
# include .bashrc if it exists
|
||||||
|
if [ -f "$HOME/.bashrc" ]; then
|
||||||
|
. "$HOME/.bashrc"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# set PATH so it includes user's private bin directories
|
||||||
|
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
|
||||||
|
export PATH=$PATH:/opt/trello
|
||||||
|
#for i3 to use gnome control center
|
||||||
|
export XDG_CURRENT_DESKTOP=GNOME
|
Loading…
Reference in New Issue
Block a user