Bruno BELANYI
1138cbf798
Because I start the tray icon at i3's startup in my configuration file, I do not need to add redshift-gtk as a requirement to systemd's default target. This avoids having two redshift-gtk instances running. I also removed the systemctl calls to enable the services from the installation script. Maybe I'll switch back to using services instead of launching the tray-icon at i3's startup someday.
30 lines
511 B
Bash
Executable file
30 lines
511 B
Bash
Executable file
#! /usr/bin/sh
|
|
|
|
# Configuration files
|
|
stow -t ~ X
|
|
stow -t ~ bash
|
|
stow -t ~ dunst
|
|
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
|
|
|
|
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/
|