mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-26 13:18:35 -06:00
improved photoprism auto indexing
This commit is contained in:
parent
68899bb73c
commit
11dc16df6b
2 changed files with 8 additions and 20 deletions
|
@ -1,23 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# If started as root, then re-start as user "gavenkoa":
|
||||
if [ "$(id -u)" -eq 0 ]; then
|
||||
exec sudo -H -u <user> $0 "$@"
|
||||
fi
|
||||
# To be used as a cron job
|
||||
|
||||
function notify-send2() {
|
||||
#Detect the name of the display in use
|
||||
local display=":$(ls /tmp/.X11-unix/* | sed 's#/tmp/.X11-unix/X##' | head -n 1)"
|
||||
|
||||
#Detect the user using such display
|
||||
local user=$(who | grep '('$display')' | awk '{print $1}' | head -n 1)
|
||||
|
||||
#Detect the id of the user
|
||||
local uid=$(id -u $user)
|
||||
|
||||
sudo -u $user DISPLAY=$display DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$uid/bus notify-send -a rclone -h string:desktop-entry:alacritty "$@"
|
||||
}
|
||||
|
||||
notify-send2 "PhotoPrism autoindex" "Indexing started..."
|
||||
sudo /usr/bin/docker exec -it photoprism_photoprism_1 /photoprism/bin/photoprism index
|
||||
notify-send2 "PhotoPrism autoindex" "Indexing finished..."
|
||||
echo `date` "| Updating index..." | tee -a logfile
|
||||
<location-of-photoprism-index-script>
|
||||
echo `date` "| Done!" | tee -a logfile
|
4
photoprism-index
Executable file
4
photoprism-index
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd <photoprism-folder-location>
|
||||
docker-compose exec -T photoprism photoprism index
|
Loading…
Reference in a new issue