Rename crontab to .crontab and activate it in .bash_profile
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
9780375c30
commit
53bb4c8c79
6 changed files with 9 additions and 8 deletions
|
@ -8,6 +8,9 @@ if [[ $- == *i* && -f $HOME/.bashrc ]]; then
|
||||||
. $HOME/.bashrc
|
. $HOME/.bashrc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Activate correct crontab file
|
||||||
|
crontab -u severin $HOME/.crontab
|
||||||
|
|
||||||
# If we are on tty1 we start the x-server
|
# If we are on tty1 we start the x-server
|
||||||
if [ "$(tty)" = "/dev/tty1" ]; then
|
if [ "$(tty)" = "/dev/tty1" ]; then
|
||||||
startx && exit
|
startx && exit
|
||||||
|
|
|
@ -228,7 +228,3 @@ assign [class="Audacious"] $workspace10
|
||||||
|
|
||||||
# Disable window titlebars
|
# Disable window titlebars
|
||||||
for_window [class="^.*"] border pixel 0
|
for_window [class="^.*"] border pixel 0
|
||||||
|
|
||||||
# Gaps
|
|
||||||
gaps inner 10
|
|
||||||
gaps outer 10
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
a = add --all
|
a = add --all
|
||||||
|
|
||||||
# Create a commit and sign it off
|
# Create a commit and sign it off
|
||||||
c = commit -s -m
|
c = commit -s
|
||||||
|
|
||||||
# Push to the master branch of the origin remote
|
# Push to the master branch of the origin remote
|
||||||
p = push origin master
|
p = push origin master
|
||||||
|
@ -24,3 +24,5 @@
|
||||||
[color]
|
[color]
|
||||||
# Activate color use in git commands
|
# Activate color use in git commands
|
||||||
ui = auto
|
ui = auto
|
||||||
|
[core]
|
||||||
|
editor = vim
|
||||||
|
|
|
@ -17,4 +17,4 @@ else
|
||||||
resolution="$2"
|
resolution="$2"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
livestreamer "twitch.tv/$1" "$resolution"
|
livestreamer --http-header Client-ID=ewvlchtxgqq88ru9gmfp1gmyt6h2b93 "twitch.tv/$1" "$resolution"
|
||||||
|
|
|
@ -27,5 +27,5 @@ php composer-setup.php
|
||||||
php -r "unlink('composer-setup.php');"
|
php -r "unlink('composer-setup.php');"
|
||||||
mv "$DIR/composer.phar" "$HOME/bin/composer"
|
mv "$DIR/composer.phar" "$HOME/bin/composer"
|
||||||
|
|
||||||
# Activate crontab file
|
# Link crontab file
|
||||||
crontab -u $USER "$DIR/.crontab"
|
ln -s "$DIR/.crontab" "$HOME/.crontab"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue