Massive United States Data Breach
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHO
    hopper23
    2mo ago 85%

    Also be careful of having your experian account being compromised where hackers then attempt to unfreeze your credit.

    5
  • This may help some folks who want to use Okular but also have their PDF files reopen between restarts. You can call saveokular.sh from cron and some other tricks so this is all seamless: $ cat /usr/local/bin/openokular.sh #!/bin/bash # Check if the file with paths exists if [ ! -f ~/.okular_open_files.txt ]; then echo "No saved PDF paths found." exit 1 fi # Open PDFs in Okular echo $1 >> ~/.okular_open_files.txt sed -i '/^$/d' ~/.okular_open_files.txt cat ~/.okular_open_files.txt | xargs -d '\n' /usr/bin/orig_okular & $ cat /usr/local/bin/saveokular.sh #!/bin/bash if pid=$(ps -C orig_okular -o pid= | sed -e 's/\s//g') && [[ -n $pid ]]; then ls -l /proc/"$pid"/fd | grep '.pdf' | awk -F ' -> ' '{print $2}' > ~/.okular_open_files.txt fi

    5
    0