mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 14:53:58 +01:00
16 lines
467 B
Bash
16 lines
467 B
Bash
#/bin/bash
|
|
|
|
MYPATH=$PWD/computers/work-xps
|
|
|
|
# set up hiDPI
|
|
sudo ln -sf "$MYPATH/environment" /etc/environment
|
|
|
|
# set up docking
|
|
ln -sf "$MYPATH/Xresources.docked" ~/.Xresources.docked
|
|
ln -sf "$MYPATH/Xresources.undocked" ~/.Xresources.undocked
|
|
ln -sf "$MYPATH/docked.sh" ~/.docked.sh
|
|
ln -sf "$MYPATH/undocked.sh" ~/.undocked.sh
|
|
ln -sf "$MYPATH/xprofile.sh" ~/.xprofile
|
|
|
|
# custom (laptop specific) bashrc thingies :)
|
|
ln -sf "$MYPATH/custom-bashrc.sh" ~/.custom |