Move local logs to .local/log
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
88927bbf39
commit
08dd4d1464
4 changed files with 4 additions and 4 deletions
|
@ -22,7 +22,7 @@ USER="severin"
|
||||||
|
|
||||||
# Array of directories which should be created
|
# Array of directories which should be created
|
||||||
DIRECTORIES=(
|
DIRECTORIES=(
|
||||||
".logs"
|
".local/log"
|
||||||
"Build"
|
"Build"
|
||||||
"Downloads"
|
"Downloads"
|
||||||
"Projects"
|
"Projects"
|
||||||
|
|
|
@ -10,5 +10,5 @@
|
||||||
# USAGE:
|
# USAGE:
|
||||||
# This file is loaded on boot by crontab.
|
# This file is loaded on boot by crontab.
|
||||||
|
|
||||||
# Synchronize Google Drive
|
# Synchronize Google Drive every 30 minutes
|
||||||
*/10 * * * * grive -d -p /home/severin/GoogleDrive/ >> /home/severin/.logs/cron.log 2>&1
|
*/30 * * * * grive -d -p /home/severin/GoogleDrive/ >> $XDG_LOG_HOME/cron.log 2>&1
|
||||||
|
|
|
@ -59,7 +59,6 @@ export GTK_IM_MODULE=xim
|
||||||
export XMODIFIERS=@im=ibus
|
export XMODIFIERS=@im=ibus
|
||||||
export QT_IM_MODULE=xim
|
export QT_IM_MODULE=xim
|
||||||
|
|
||||||
|
|
||||||
# Adding folders to the PATH variable
|
# Adding folders to the PATH variable
|
||||||
export PATH="${PATH}:${HOME}/.local/bin"
|
export PATH="${PATH}:${HOME}/.local/bin"
|
||||||
export PATH="${PATH}:${CARGO_HOME}/bin"
|
export PATH="${PATH}:${CARGO_HOME}/bin"
|
||||||
|
|
|
@ -45,6 +45,7 @@ export XDG_CONFIG_HOME="${HOME}/.config"
|
||||||
export XDG_CACHE_HOME="${HOME}/.cache"
|
export XDG_CACHE_HOME="${HOME}/.cache"
|
||||||
export XDG_DATA_HOME="${HOME}/.local/share"
|
export XDG_DATA_HOME="${HOME}/.local/share"
|
||||||
export XDG_BIN_HOME="${HOME}/.local/bin"
|
export XDG_BIN_HOME="${HOME}/.local/bin"
|
||||||
|
export XDG_LOG_HOME="${HOME}/.local/log"
|
||||||
|
|
||||||
# Sourcing environment variables
|
# Sourcing environment variables
|
||||||
if [ -f "${XDG_CONFIG_HOME}/custom/env" ]; then
|
if [ -f "${XDG_CONFIG_HOME}/custom/env" ]; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue