Remove scripts directory and enable basic autocompletion on dotgit command

This commit is contained in:
Alice Gaudon 2020-01-25 20:01:57 +01:00
parent d3f9d1abe0
commit df0b860396
5 changed files with 1 additions and 63 deletions

1
.zshrc
View File

@ -42,6 +42,7 @@ VISUAL=$EDITOR
setopt complete_aliases
alias dotgit='git --git-dir=$HOME/dotfiles/ --work-tree=$HOME'
compdef dotgit='git'
alias authy="/usr/bin/electron4 --app /usr/lib/authy/app.asar"
alias syslog="sudo journalctl -f | ccze"

View File

@ -1,21 +0,0 @@
#!/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

View File

@ -1,20 +0,0 @@
#!/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

View File

@ -1,8 +0,0 @@
#!/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/(.*$//'

View File

@ -1,14 +0,0 @@
#!/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