literate-dotfiles/binaries-private.org

216 lines
7.1 KiB
Org Mode
Raw Normal View History

2020-05-26 08:33:31 +02:00
#+TITLE: My own specific binaries
2021-01-01 20:12:34 +01:00
#+SETUPFILE: ./setup/org-setup-file.org
2020-05-26 08:33:31 +02:00
#+PROPERTY: header-args:bash :comments both :mkdirp yes
#+PROPERTY: header-args:bash+ :shebang "#!/usr/bin/env bash"
#+PROPERTY: header-args:bash+ :tangle-mode (identity #o555)
2020-05-26 08:33:31 +02:00
* =remote-desktop= - Remote Desktop Connect
2021-01-01 20:12:34 +01:00
:PROPERTIES:
:CUSTOM_ID: remote-desktop
:END:
2020-05-26 08:33:31 +02:00
#+begin_src bash :tangle ~/.local/bin/remote-desktop
computer=$(echo -e 'RNICE\nPCMEL1\nPCNASS1\nPCMEG01' | dmenu -p 'Computer:' -l 20);
dunstify --replace=89891 'Rdesktop' "Connection to ${computer}..."
case $computer in
PCMEL1)
xfreerdp /u:dehaeze /d:ESRF /clipboard /bpp:8 /bpp:16 /compression -themes -wallpaper /async-update /async-input -glyph-cache /audio-mode:1 /dynamic-resolution /auto-reconnect /p:$(pass ssl.esrf.fr/dehaeze | sed -n 1p) /v:PCMEL1.esrf.fr;
;;
PCMEG01)
xfreerdp /u:dehaeze /d:ESRF /clipboard /bpp:8 /bpp:16 /compression -themes -wallpaper /async-update /async-input -glyph-cache /audio-mode:1 /dynamic-resolution /auto-reconnect /p:$(pass ssl.esrf.fr/dehaeze | sed -n 1p) /v:PCMEG01.esrf.fr;
;;
PCNASS1)
xfreerdp /u:dehaeze /d:ESRF /clipboard /bpp:8 /bpp:16 /compression -themes -wallpaper /async-update /async-input -glyph-cache /audio-mode:1 /dynamic-resolution /auto-reconnect /p:$(pass ssl.esrf.fr/dehaeze | sed -n 1p) /v:PCNASS1.esrf.fr;
;;
RNICE)
xfreerdp /u:dehaeze /d:ESRF /clipboard /bpp:8 /bpp:16 /compression -themes -wallpaper /async-update /async-input -glyph-cache /audio-mode:1 /dynamic-resolution /auto-reconnect /p:$(pass ssl.esrf.fr/dehaeze | sed -n 1p) /v:rnice.esrf.fr;
;;
,*)
echo "Not existing" && \
dunstify --replace=89891 --urgency=critical 'Rdesktop' "No config for $computer";
;;
esac
2020-05-26 08:33:31 +02:00
#+end_src
* =print-rnice= - Print on Rnice
2021-01-01 20:12:34 +01:00
:PROPERTIES:
:CUSTOM_ID: print-rnice
:END:
2020-05-26 08:33:31 +02:00
#+begin_src bash :tangle ~/.local/bin/print-rnice
nbpage=$(echo -e '1\n2\n4' | dmenu -p 'Number of pages per sheet' -l 20);
sides=$(echo -e 'one-sided\ntwo-sided-long-edge\ntwo-sided-short-edge' | dmenu -p 'Two Sided:' -l 20);
media=$(echo -e 'A4\nA3' | dmenu -p 'Size:' -l 20);
# First copy the file to Rnice
2021-10-25 14:32:51 +02:00
if sshpass -p "$(pass esrf.fr/dehaeze | sed -n 1p)" scp $1 dehaeze@rnice:/home/esrf/dehaeze/Downloads/; then
# Then print on Rnice
2021-10-25 14:32:51 +02:00
sshpass -p "$(pass esrf.fr/dehaeze | sed -n 1p)" ssh dehaeze@rnice "lpr -o media=$media -o sides=$sides -o number-up=$nbpage -P ctb127c1w \"/home/esrf/dehaeze/Downloads/$1\"";
# Finally, delete the file
else
echo "Command Failed"
fi
2020-05-26 08:33:31 +02:00
#+end_src
* =tmp14= - Mount/Umount tmp_14_days folder
2021-01-01 20:12:34 +01:00
:PROPERTIES:
:CUSTOM_ID: tmp14
:END:
2020-05-26 08:33:31 +02:00
#+begin_src bash :tangle ~/.local/bin/tmp_14_days
if [ $1 == "mount" ]; then
if sshfs -o allow_other,default_permissions -p 5022 dehaeze@firewall.esrf.fr:/tmp_14_days/ ~/mnt/ESRF; then
dunstify --replace=58249 'ESRF TMP ' 'Successfully mounted'
else
dunstify --replace=58249 --urgency=critical 'ESRF TMP ' 'Error while mounted'
fi
elif [ $1 == "umount" ]; then
if umount /home/thomas/mnt/ESRF/; then
dunstify --replace=58249 'ESRF TMP ' 'Successfully unmounted'
else
dunstify --replace=58249 --urgency=critical 'ESRF TMP ' 'Error while unmounted'
fi
fi
2020-05-26 08:33:31 +02:00
#+end_src
* =nas= - Interact with the NAS
2021-01-01 20:12:34 +01:00
:PROPERTIES:
:CUSTOM_ID: nas
:END:
2020-05-26 08:33:31 +02:00
As an alternative, =sshfs= can be used:
#+begin_src bash :tangle no
sshfs -o allow_other,default_permissions nas:/Data ~/mnt/NAS
2020-05-26 08:33:31 +02:00
#+end_src
#+begin_src bash :tangle ~/.local/bin/nas
if [ $1 == "mount" ]; then
2021-10-25 14:32:51 +02:00
if sshfs -o allow_other,default_permissions homelab:/srv/storage/ ~/mnt/NAS; then
dunstify --replace=58249 'NAS ' 'Successfully mounted'
else
dunstify --replace=58249 --urgency=critical 'NAS ' 'Error while mounted'
fi
elif [ $1 == "umount" ]; then
2021-10-25 14:32:51 +02:00
if umount ~/mnt/NAS/; then
dunstify --replace=58249 'NAS ' 'Successfully unmounted'
else
dunstify --replace=58249 --urgency=critical 'NAS ' 'Error while unmounted'
fi
fi
2020-05-26 08:33:31 +02:00
#+end_src
* =torrent-add= - Download Torrent
2021-01-01 20:12:34 +01:00
:PROPERTIES:
:CUSTOM_ID: torrent-add
:END:
2021-05-02 11:27:39 +02:00
#+begin_src bash :tangle ~/.local/bin/torrent-add :noweb yes
2021-10-25 14:32:51 +02:00
transmission-remote <<get-password(passname="ip/homelab")>>:9091 --auth tdehaeze:$(pass nas/transmission | sed -n 1p) -a $1 && \
dunstify 'Torrent' 'Successfully added' || \
dunstify 'Torrent' 'Error'
2021-01-01 20:12:34 +01:00
#+end_src
* =dl-add= - Direct Download with Aria2
:PROPERTIES:
:CUSTOM_ID: dl-add
:END:
2020-05-26 08:33:31 +02:00
2021-01-01 20:12:34 +01:00
#+begin_src bash :tangle ~/.local/bin/dl-add
aria2p --port 6800 --host http://dl.tdehaeze.xyz --secret $(pass dl.tdehaeze.xyz/tdehaeze | sed -n 1p) add $1
2020-05-26 08:33:31 +02:00
#+end_src
2020-11-03 11:39:08 +01:00
* =note-extract-fig= - Extract Figure from note file
2021-01-01 20:12:34 +01:00
:PROPERTIES:
:CUSTOM_ID: note-extract-fig
:END:
2020-11-03 11:39:08 +01:00
Script used to convert a figure drawn on my Boox note2 to a png file that can then be imported into a document.
#+begin_src bash :tangle ~/.local/bin/note-extract-fig
# First check that the first argument is a pdf file
if [[ -f $1 && $1 == *.pdf ]]; then
pngfile=$(echo $1 | cut -f 1 -d '.' | sed 's/$/.png/')
2020-11-03 11:39:08 +01:00
# Convert to png and crop png
pdf2png $1 && convert -trim "$pngfile" "$pngfile"
fi
2020-11-03 11:39:08 +01:00
#+end_src
* =screen-select= - Xrandr pre-defined scripts
2021-01-01 20:12:34 +01:00
:PROPERTIES:
:CUSTOM_ID: screen-select
:END:
2020-11-03 11:39:08 +01:00
#+begin_src bash :tangle ~/.local/bin/screen-select
option=$(echo -e "Work\nXPS\nHome" | rofi -i -dmenu)
2021-10-25 14:32:51 +02:00
after_screen_change () {
# Fix background if screen size/arangement has changed.
setbg
# Kill polybar
killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Launch bars
polybar top &
}
case "$option" in
"Work")
2021-10-25 14:32:51 +02:00
xrandr --output eDP1 --off --output DP1 --off --output DP2 --off --output DP2-1 --off --output VIRTUAL1 --off --output DP2-2 --primary --mode 2560x1440 --pos 0x0 --rotate normal && \
after_screen_change
;;
"XPS")
2021-10-25 14:32:51 +02:00
xrandr --output DP1 --off --output DP2 --off --output DP2-1 --off --output VIRTUAL1 --off --output DP2-2 --off --output eDP1 --primary --mode 1920x1080 --pos 0x0 --rotate normal && \
after_screen_change
;;
"Home")
2021-10-25 14:32:51 +02:00
xrandr --output eDP1 --off --output DP1 --off --output DP2 --off --output DP2-2 --off --output VIRTUAL1 --off --output DP2-1 --primary --mode 2560x1440 --pos 0x0 --rotate normal && \
after_screen_change
;;
,*)
echo "== ! missing or invalid argument ! =="
exit 2
esac
exit 0
2020-11-03 11:39:08 +01:00
#+end_src
* =color-picker= - Pick color and copy to clipboard
2021-01-01 20:12:34 +01:00
:PROPERTIES:
:CUSTOM_ID: color-picker
:END:
2020-11-03 11:39:08 +01:00
#+begin_src bash :tangle ~/.local/bin/color-picker
xcolor | tr -d '\n' | xsel -b
2020-11-03 11:39:08 +01:00
#+end_src
2021-02-10 18:00:14 +01:00
* =readbib= - Open Bibliography File
:PROPERTIES:
:CUSTOM_ID: readbib
:END:
List all =pdf= files and open selected one with zathura.
#+begin_src bash :tangle ~/.local/bin/readbib
cd ~/Cloud/pdfs/ && ls | rofi -dmenu -lines 20 | xargs -I {} zathura {}
#+end_src
* =readnotes= - Open Note
:PROPERTIES:
:CUSTOM_ID: readnotes
:END:
List all =pdf= files and open selected one with zathura.
#+begin_src bash :tangle ~/.local/bin/readnotes
2021-10-25 14:32:51 +02:00
cd ~/Cloud/brain/pdfs/ && ls *.pdf | rofi -dmenu -lines 20 | xargs -I {} zathura {}
2021-02-10 18:00:14 +01:00
#+end_src