Initial commit
This commit is contained in:
commit
76295770f2
21
flameshot_upload.sh
Executable file
21
flameshot_upload.sh
Executable file
@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
file_name=$(echo ~/Pictures/Screenshots/)
|
||||
base_name=$(date +%F_%H-%M-%S)
|
||||
base_name+=".png"
|
||||
|
||||
file_name+=$base_name
|
||||
|
||||
flameshot gui -r > $file_name
|
||||
|
||||
sftp -oPort=4242 gaudonpr@ftp.gaudon.pro << EOT
|
||||
cd public_html/push.arisu.fr/
|
||||
put $file_name
|
||||
EOT
|
||||
|
||||
url="https://push.arisu.fr/"
|
||||
url+=$base_name
|
||||
|
||||
echo $url | xclip -selection clipboard
|
||||
|
||||
notify-send "File upload complete" "$url" --icon=flameshot.svg
|
20
flameshot_upload_latest.sh
Executable file
20
flameshot_upload_latest.sh
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
latest_screenshot=$(ls -t ~/Pictures/Screenshots/ | head -1)
|
||||
|
||||
file_name=$(echo ~/Pictures/Screenshots/)
|
||||
base_name=$latest_screenshot
|
||||
|
||||
file_name+=$base_name
|
||||
|
||||
sftp -oPort=4242 gaudonpr@ftp.gaudon.pro << EOT
|
||||
cd public_html/push.arisu.fr/
|
||||
put $file_name
|
||||
EOT
|
||||
|
||||
url="https://push.arisu.fr/"
|
||||
url+=$base_name
|
||||
|
||||
echo $url | xclip -selection clipboard
|
||||
|
||||
notify-send "File upload complete" "$url" --icon=flameshot.svg
|
8
list_packages_sorted_by_install_date.sh
Normal file
8
list_packages_sorted_by_install_date.sh
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
for i in $(pacman -Qq)
|
||||
do
|
||||
grep "\[ALPM\] installed $i" /var/log/pacman.log
|
||||
done | \
|
||||
sort -u | \
|
||||
sed -e 's/\[ALPM\] installed //' -e 's/(.*$//'
|
14
security-updates-check.sh
Executable file
14
security-updates-check.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
UPDATES=$(arch-audit --upgradable | sed "{s/\n/<br>/g}")
|
||||
|
||||
if test "$1" != "true"
|
||||
then
|
||||
UPDATES=$(echo -e "$UPDATES" | grep -v "testing repos\!")
|
||||
fi
|
||||
|
||||
echo -e "$UPDATES"
|
||||
|
||||
if [ ! -z "$UPDATES" ]; then
|
||||
sudo -u arisu DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus notify-send -u critical -t 86400000 -i update-high "Security updates are available" "$UPDATES" --app-name="Security Updates Check"
|
||||
fi
|
Loading…
Reference in New Issue
Block a user