diff --git a/global/.config/nvim/lua/core/lazy.lua b/global/.config/nvim/lua/core/lazy.lua index 01c40f5..533319a 100644 --- a/global/.config/nvim/lua/core/lazy.lua +++ b/global/.config/nvim/lua/core/lazy.lua @@ -36,7 +36,7 @@ local opts = { "zipPlugin", }, }, - checker = { enabled = true }, + -- checker = { enabled = true }, change_detection = { notify = false, }, diff --git a/global/.ssh/config b/global/.ssh/config index 0e6efc0..27997f5 100644 Binary files a/global/.ssh/config and b/global/.ssh/config differ diff --git a/global/.zshrc b/global/.zshrc index 6fa4fb9..571a16e 100644 --- a/global/.zshrc +++ b/global/.zshrc @@ -1,4 +1,5 @@ # Path to your oh-my-zsh installation. +export TERM="tmux-256color" export ZSH="$HOME/.oh-my-zsh" setopt HIST_IGNORE_SPACE diff --git a/global/scripts/bin/linkding_promnesia.sh b/global/scripts/bin/linkding_promnesia.sh index 2690290..a62cc2c 100755 --- a/global/scripts/bin/linkding_promnesia.sh +++ b/global/scripts/bin/linkding_promnesia.sh @@ -19,7 +19,7 @@ while true; do fi OFFSET="$((OFFSET + 100))" else - LINKDATA=$(linkding bookmarks all) + LINKDATA="$(linkding bookmarks all)" if [[ -z "$LINKDATA" ]]; then die "There is no data to fetch" fi diff --git a/linux/.config/systemd/user/promnesia_index.service b/linux/.config/systemd/user/promnesia_index.service index e672098..d3d1501 100644 --- a/linux/.config/systemd/user/promnesia_index.service +++ b/linux/.config/systemd/user/promnesia_index.service @@ -2,8 +2,12 @@ Description=index promnesia [Service] -ExecStart=/home/fz0x1/.local/share/pipx/venvs/promnesia/bin/promnesia index +; ExecStart=/home/fz0x1/.local/share/pipx/venvs/promnesia/bin/promnesia index +ExecStart=/bin/zsh -c '. /home/fz0x1/.zshrc && /home/fz0x1/.local/share/pipx/venvs/promnesia/bin/promnesia index' StandardOutput=append:/tmp/promnesia-index.log StandardError=append:/tmp/promnesia-index.err Restart=on-failure RestartSec=10 + +[Install] +WantedBy=default.target