Bruno BELANYI
5cdacc9abb
The Redshift package on Arch doesn't seem to add a service file anywhere so we have to add one ourselves in our configuration directory. Geoclue doesn't seem to want to play nice with Redshift right now, so I used the manual setting to add Paris' coordinates.
33 lines
611 B
Bash
Executable file
33 lines
611 B
Bash
Executable file
#! /usr/bin/sh
|
|
|
|
# Configuration files
|
|
stow -t ~ X
|
|
stow -t ~ bash
|
|
stow -t ~ emacs
|
|
stow -t ~ git
|
|
stow -t ~ i3
|
|
stow -t ~ i3blocks
|
|
stow -t ~ ranger
|
|
stow -t ~ redshift
|
|
stow -t ~ termite
|
|
stow -t ~ tridactyl
|
|
stow -t ~ vim
|
|
stow -t ~ zsh
|
|
|
|
# Our Redshift services needs to be symlined
|
|
systemctl --user enable redshift
|
|
systemctl --user enable redshift-gtk
|
|
|
|
if ! [ -e ~/scripts ]; then
|
|
# Only create the symlink when the directory doesn't exist
|
|
mkdir ~/scripts
|
|
# Scripts must be in there own directory
|
|
stow -t ~/scripts scripts/
|
|
fi
|
|
|
|
# Common shell files
|
|
stow -t ~ shell/
|
|
|
|
# Wallpapers
|
|
stow -t ~ wallpapers/
|