diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index cea137cf..bb86ec45 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -307,7 +307,7 @@ globalkeys = awful.util.table.join( awful.key({}, "Print", function () awful.util.spawn("scrot '" .. home .. "/temp/screen-%F-%T.png'") end), -- TODO manager - awful.key({ modkey }, "t", function () awful.util.spawn(os.getenv("EDITOR") .. " ~/dataperso/todo/todo.org") end), + awful.key({ modkey }, "t", function () awful.util.spawn(os.getenv("EDITOR") .. " ~/personal/todo/todo.org") end), -- Mouse control -- Touchpad diff --git a/.profile b/.profile index 28bfb479..35f7445a 100644 --- a/.profile +++ b/.profile @@ -51,7 +51,7 @@ if [ -d "${TEXDIR}" ]; then unset TEXFOLDER fi unset TEXDIR -export BIBINPUTS=~/dataperso/bibliography +export BIBINPUTS=~/personal/bibliography ## Plan9 (base) PLAN9DIR="/opt/plan9" diff --git a/.scripts/homeinit b/.scripts/homeinit index 772ce634..0ab478e7 100755 --- a/.scripts/homeinit +++ b/.scripts/homeinit @@ -1,7 +1,7 @@ #!/bin/sh ## Home session initialization. -SOURCEDIR="$HOME/dataperso" +SOURCEDIR="$HOME/personal" [ -z "$XDG_CONFIG_HOME" ] && XDG_CONFIG_HOME="$HOME/.config" [ -z "$XDG_DATA_HOME" ] && XDG_DATA_HOME="$HOME/.local/share" [ -z "$XDG_DATA_DIRS" ] && XDG_DATA_DIRS="/usr/local/share"