commit 5c7e0664d5e4d5f337127f14c84bcb03c28d7929
parent 162f0467be067809927790153b2b60b77d86f5d6
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Sun, 28 Jul 2019 07:49:26 +0200
Fix fuzzylaunch open, update feeds
Diffstat:
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/.config/newsboat/urls b/.config/newsboat/urls
@@ -105,8 +105,6 @@ https://www.youtube.com/feeds/videos.xml?channel_id=UCf98WFQLzORUfCinbycwXXQ you
https://www.youtube.com/feeds/videos.xml?channel_id=UChWv6Pn_zP0rI6lgGt3MyfA youtube tech "~youtube: arduinoversusevil"
https://www.youtube.com/feeds/videos.xml?channel_id=UC2eYFnH61tmytImy1mTYvhA youtube tech "~youtube: Luke Smith"
https://www.youtube.com/feeds/videos.xml?channel_id=UCkK9UDm_ZNrq_rIXCz3xCGA youtube tech "~youtube: BryanLunduke"
-https://www.youtube.com/feeds/videos.xml?channel_id=UCHugE6eRhqB9_AZQh4DDbIw youtube tech "~youtube: jupiterbroadcasting"
-https://www.youtube.com/feeds/videos.xml?channel_id=UC4w1YQAJMWOz4qtxinq55LQ youtube tech "~youtube: teksyndicate"
https://www.youtube.com/feeds/videos.xml?channel_id=UC0A3ldncnGQ1M_RU2Wb4L2A youtube tech "~youtube: quidsup"
https://www.youtube.com/feeds/videos.xml?channel_id=UCTfabOKD7Yty6sDF4POBVqA youtube tech "~youtube: BadEditPro"
diff --git a/.local/bin/fuzzylaunch b/.local/bin/fuzzylaunch
@@ -10,11 +10,11 @@ file=$(echo "$out" | sed 2q | tail -1)
if [ -n "$file" ]; then
if [ "$key" = ctrl-e ]; then
- setsid "$TERMINAL" -e "$EDITOR" "$file" >/dev/null 2>&1
+ nohup "$TERMINAL" -e "$EDITOR" "$file" >/dev/null 2>&1 &
elif [ "$key" = ctrl-o ]; then
cd "$(dirname "$file")" && setsid "$TERMINAL" >/dev/null 2>&1
else
- setsid "$open" "$file" >/dev/null 2>&1
+ nohup "$open" "$file" >/dev/null 2>&1 &
fi
sleep 0.25
fi