326 lines
13 KiB
Org Mode
326 lines
13 KiB
Org Mode
#+TITLE: My own specific binaries
|
|
#+SETUPFILE: ./setup/org-setup-file.org
|
|
|
|
#+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)
|
|
|
|
* =phonebook= ESRF phone-book
|
|
:PROPERTIES:
|
|
:CUSTOM_ID: phonebook
|
|
:END:
|
|
|
|
The phone-list is taken from =scp rnice@esrf.fr:/mnt/multipath-shares/sware/pub/phonelist/share/annuaire.txt /home/thomas/.local/data/annuaire.txt=
|
|
|
|
#+begin_src bash :tangle ~/.local/bin/phonebook
|
|
cat ~/.local/data/annuaire.txt | fzf --header="NAME Phone Box department roomNumber description mail"
|
|
#+end_src
|
|
|
|
#+begin_src bash :tangle ~/.local/bin/phonebook-gui
|
|
$TERMINAL --title esrf-phonebook -e phonebook
|
|
#+end_src
|
|
|
|
* =contacts= Personnal phone-book
|
|
:PROPERTIES:
|
|
:CUSTOM_ID: contacts
|
|
:END:
|
|
|
|
#+begin_src bash :tangle ~/.local/bin/contacts
|
|
khard | fzf --header="Index Name Phone E-Mail"
|
|
#+end_src
|
|
|
|
#+begin_src bash :tangle ~/.local/bin/contacts-gui
|
|
$TERMINAL --title esrf-phonebook -e contacts
|
|
#+end_src
|
|
|
|
* =remote-desktop= - Remote Desktop Connect
|
|
:PROPERTIES:
|
|
:CUSTOM_ID: remote-desktop
|
|
:END:
|
|
|
|
#+begin_src bash :tangle ~/.local/bin/remote-desktop
|
|
computer=$(echo -e 'WID16A1\nWID21SPEEDGOAT1\nWID24SPEEDGOAT1\nWBM23SPEEDGOAT1\nWMELSPEEDGOAT1\nWID31PC1\nPCOPTRO\nPCMEL1\nRNICE\nPCDEHAEZE\nLAPMEL01\nDesktop-W10' | rofi -i -dmenu -no-custom -p 'Computer:' -l 20);
|
|
|
|
if [[ -z "$computer" ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
dunstify --replace=99425 'Rdesktop' "Connection to ${computer}..."
|
|
|
|
proxy_arg=""
|
|
if [ "$computer" = "Desktop-W10" ]; then
|
|
# If connect to local PC
|
|
ping -c 1 desktop-w10.lan &> /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
# And outside of local network, use proxy
|
|
proxy_arg="/proxy:socks5://localhost:8080"
|
|
fi
|
|
else
|
|
ping -c 1 proxy.esrf.fr &> /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
# Outside the ESRF network
|
|
proxy_arg="/proxy:socks5://localhost:8081"
|
|
fi
|
|
fi
|
|
|
|
common_arg="/clipboard /bpp:8 /bpp:16 /compression -themes -wallpaper /async-update /async-input -glyph-cache /audio-mode:1 /dynamic-resolution /auto-reconnect /wm-class:RDP_$computer -grab-keyboard /cert:ignore"
|
|
|
|
case "$computer" in
|
|
"RNICE" | "PCDEHAEZE")
|
|
xfreerdp $proxy_arg $common_arg /d:ESRF /u:dehaeze /p:$(pass esrf.fr/dehaeze | sed -n 1p) /v:$computer.esrf.fr > /tmp/freerdp_${computer}.log 2>&1 & ;;
|
|
|
|
"PCMEL1" | "PCOPTRO" | "LAPMEL01")
|
|
xfreerdp $proxy_arg $common_arg /d:ESRF /u:OPPEL /p:TonicPEL /v:$computer.esrf.fr > /tmp/freerdp_${computer}.log 2>&1 & ;;
|
|
|
|
"WMELSPEEDGOAT1")
|
|
xfreerdp $proxy_arg $common_arg /d:ESRF /u:opd23 /p:tonic23 /v:$computer.esrf.fr > /tmp/freerdp_${computer}.log 2>&1 & ;;
|
|
|
|
"WID16A1")
|
|
xfreerdp $proxy_arg $common_arg /d:ESRF /u:opid16a /p:tonic16 /v:$computer.esrf.fr > /tmp/freerdp_${computer}.log 2>&1 & ;;
|
|
|
|
"WID31PC1")
|
|
xfreerdp $proxy_arg $common_arg /d:ESRF /u:opid31 /p:tonic31 /v:$computer.esrf.fr > /tmp/freerdp_${computer}.log 2>&1 & ;;
|
|
|
|
"WID21SPEEDGOAT1")
|
|
xfreerdp $proxy_arg $common_arg /d:ESRF /u:opid21 /p:tonic21 /v:$computer.esrf.fr > /tmp/freerdp_${computer}.log 2>&1 & ;;
|
|
|
|
"WID24SPEEDGOAT1")
|
|
xfreerdp $proxy_arg $common_arg /d:ESRF /u:opid24 /p:tonic24 /v:$computer.esrf.fr > /tmp/freerdp_${computer}.log 2>&1 & ;;
|
|
|
|
"WBM23SPEEDGOAT1")
|
|
xfreerdp $proxy_arg $common_arg /d:ESRF /u:opd23 /p:tonic23 /v:$computer.esrf.fr > /tmp/freerdp_${computer}.log 2>&1 & ;;
|
|
|
|
"Desktop-W10")
|
|
xfreerdp $proxy_arg $common_arg /u:thomas /p:$(pass windows/Desktop-W10 | sed -n 1p) /v:192.168.1.72 > /tmp/freerdp_${computer}.log 2>&1 & ;;
|
|
|
|
esac
|
|
#+end_src
|
|
|
|
* =mount-dir= - Mount/Unmout directories
|
|
#+begin_src text :tangle no
|
|
# <file system> <mount point> <type> <options> <dump> <pass>
|
|
homelab:/srv/storage/ /home/thomas/mnt/homelab fuse.sshfs noauto,allow_other,user,default_permissions 0 0
|
|
#+end_src
|
|
|
|
#+begin_src text :tangle no
|
|
# <file system> <mount point> <type> <options> <dump> <pass>
|
|
dehaeze@rnice:/tmp_14_days/ /home/thomas/mnt/tmp_14_days fuse.sshfs noauto,allow_other,user,default_permissions 0 0
|
|
#+end_src
|
|
|
|
#+begin_src text :tangle no
|
|
# <file system> <mount point> <type> <options> <dump> <pass>
|
|
dehaeze@rnice:/home/esrf/dehaeze/ /home/thomas/mnt/unix_home fuse.sshfs noauto,allow_other,user,default_permissions 0 0
|
|
#+end_src
|
|
|
|
#+begin_src text :tangle no
|
|
# <file system> <mount point> <type> <options> <dump> <pass>
|
|
//wfiles/groupshare /home/thomas/mnt/groupshare vsifs noauto,user,credentials=/home/thomas/.smbcredentials,uid=1001,gid=1001,forceuid,forcegid 0 0
|
|
#+end_src
|
|
|
|
#+begin_src text :tangle no
|
|
//wfiles/groupshare /home/thomas/mnt/groupshare cifs noauto,user,uid=1000,gid=1000,credentials=/home/thomas/.smbcredentials 0 0
|
|
homelab:/srv/storage/ /home/thomas/mnt/homelab fuse.sshfs noauto,allow_other,user,uid=1000,gid=1000,default_permissions 0 0
|
|
dehaeze@rnice:/tmp_14_days/ /home/thomas/mnt/tmp_14_days fuse.sshfs noauto,allow_other,user,uid=1000,gid=1000,default_permissions 0 0
|
|
dehaeze@rnice:/home/esrf/dehaeze/ /home/thomas/mnt/unix_home fuse.sshfs noauto,allow_other,user,uid=1000,gid=1000,default_permissions 0 0
|
|
dehaeze@rnice:/data/monochromators/ /home/thomas/mnt/monochromators fuse.sshfs noauto,allow_other,user,uid=1000,gid=1000,default_permissions 0 0
|
|
dehaeze@rnice:/gpfs/jazzy/data/id21/inhouse /home/thomas/mnt/data_id21 fuse.sshfs noauto,allow_other,user,uid=1000,gid=1000,default_permissions 0 0
|
|
blissadm@lmellab:/data/id00/inhouse/DCM /home/thomas/mnt/data_id24 fuse.sshfs noauto,allow_other,user,uid=1000,gid=1000,default_permissions 0 0
|
|
blissadm@lmellab:/data/id00/inhouse/MEL /home/thomas/mnt/data_mel fuse.sshfs noauto,allow_other,user,uid=1000,gid=1000,default_permissions 0 0
|
|
blissadm@lmellab:/users/blissadm/local /home/thomas/mnt/bliss fuse.sshfs noauto,allow_other,user,uid=1000,gid=1000,default_permissions 0 0
|
|
blissadm@lmellab:/data/visitor /home/thomas/mnt/data_bl fuse.sshfs noauto,allow_other,user,uid=1000,gid=1000,default_permissions 0 0
|
|
#+end_src
|
|
|
|
#+begin_src bash :tangle no
|
|
if [ $# -eq 0 ]; then
|
|
drive=$(echo -e 'bliss_mel\nbliss_id21\ndata_bl\ndata_id21\ndata_id24\ndata_mel\ndata_visitor\ndrive\nhomelab\nmonochromators\ntmp_14_days\nunix_home' | rofi -dmenu -no-custom -p 'Drive:' -l 20);
|
|
if [[ -z "$drive" ]]; then
|
|
exit 1
|
|
fi
|
|
else
|
|
drive=$1
|
|
fi
|
|
|
|
|
|
if grep -qs "/home/thomas/mnt/$drive" /proc/mounts; then
|
|
umount "/home/thomas/mnt/$drive" && \
|
|
dunstify --replace=58249 "$drive " 'Successfully unmounted' || \
|
|
dunstify --replace=58249 --urgency=critical "$drive " 'Error while unmounted'
|
|
else
|
|
echo "It's not mounted."
|
|
mount "/home/thomas/mnt/$drive" && \
|
|
dunstify --replace=58249 "$drive " 'Successfully mounted' || \
|
|
dunstify --replace=58249 --urgency=critical "$drive " 'Error while mounted'
|
|
fi
|
|
#+end_src
|
|
|
|
#+begin_src bash :tangle ~/.local/bin/mount-dir
|
|
if [ $# -eq 0 ]; then
|
|
drive=$(find ~/mnt/* -maxdepth 0 -type d -empty -printf '%f\n' | rofi -i -dmenu -no-custom -p 'Drive:' -l 20);
|
|
if [[ -z "$drive" ]]; then
|
|
exit 1
|
|
fi
|
|
else
|
|
exit 1
|
|
fi
|
|
|
|
proxy_arg=""
|
|
ping -c 1 proxy.esrf.fr &> /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
# Outside the ESRF network
|
|
proxy_arg=".esrf.fr"
|
|
fi
|
|
|
|
remote_loc=""
|
|
case "$drive" in
|
|
"homelab")
|
|
remote_loc="thomas@homelab:/srv/storage/" ;;
|
|
"tmp_14_days")
|
|
remote_loc="dehaeze@rnice$proxy_arg:/tmp_14_days/" ;;
|
|
"unix_home")
|
|
remote_loc="dehaeze@rnice$proxy_arg:/home/esrf/dehaeze/" ;;
|
|
"monochromators")
|
|
remote_loc="dehaeze@rnice$proxy_arg:/data/monochromators/" ;;
|
|
"data_mel")
|
|
remote_loc="opid00@lmellab$proxy_arg:/data/id00/inhouse/" ;;
|
|
"data_jazzy")
|
|
remote_loc="dehaeze@rnice$proxy_arg:/gpfs/jazzy/data/" ;;
|
|
"data_easy")
|
|
remote_loc="dehaeze@rnice$proxy_arg:/gpfs/easy/data/" ;;
|
|
"data_id16a")
|
|
remote_loc="blissadm@pico3$proxy_arg:/data/id16a/inhouse1/commissioning/ni_endstation/Speedgoat/" ;;
|
|
"data_id31")
|
|
remote_loc="opid31@id31$proxy_arg:/data/id31/inhouse/" ;;
|
|
"bliss_mel")
|
|
remote_loc="blissadm@lmellab$proxy_arg:/users/blissadm/local/" ;;
|
|
"bliss_id16a")
|
|
remote_loc="blissadm@pico3$proxy_arg:/users/blissadm/local/" ;;
|
|
"bliss_id21")
|
|
remote_loc="blissadm@lid21nano$proxy_arg:/users/blissadm/local/" ;;
|
|
"bliss_id24")
|
|
remote_loc="blissadm@foucault$proxy_arg:/users/blissadm/local/" ;;
|
|
"groupshare")
|
|
mount ~/mnt/groupshare && \
|
|
exit ;;
|
|
esac
|
|
|
|
if [ -z $remote_loc ]; then
|
|
exit
|
|
else
|
|
sshfs -o allow_other,user,uid=1000,gid=1000,default_permissions,IdentityFile=/home/thomas/.ssh/id_ed25519 $remote_loc /home/thomas/mnt/$drive
|
|
fi
|
|
|
|
# sshfs -o allow_other,user,uid=1000,gid=1000,default_permissions $remote_loc /home/thomas/mnt/$drive
|
|
#+end_src
|
|
|
|
#+begin_src bash :tangle ~/.local/bin/umount-dir
|
|
if [ $# -eq 0 ]; then
|
|
# drive=$(find ~/mnt/* -maxdepth 0 -type d -not -empty -printf '%f\n' | rofi -dmenu -no-custom -p 'Drive:' -l 20);
|
|
drive=$(ls ~/mnt/ | rofi -dmenu -no-custom -p 'Drive:' -l 20);
|
|
if [[ -z "$drive" ]]; then
|
|
exit 1
|
|
fi
|
|
else
|
|
exit 1
|
|
fi
|
|
|
|
umount /home/thomas/mnt/$drive
|
|
#+end_src
|
|
|
|
* =screen-select= - Xrandr pre-defined scripts
|
|
:PROPERTIES:
|
|
:CUSTOM_ID: screen-select
|
|
:END:
|
|
|
|
#+begin_src bash :tangle ~/.local/bin/screen-select
|
|
option=$(echo -e "Work\nLaptop\nHome" | rofi -i -dmenu -no-custom -p 'Screen:' -l 20)
|
|
|
|
if [[ -z "$option" ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
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")
|
|
xrandr --output eDP-1 --off \
|
|
--output DP-3-2 --primary --mode 2560x1440 --pos 0x0 --rotate normal \
|
|
--output DP-3-1 --primary --mode 2560x1440 --pos 2560x0 --rotate normal && \
|
|
after_screen_change
|
|
;;
|
|
"Laptop")
|
|
xrandr --output DP-1-2 --off --output DP-3-1 --off --output DP-3-2 --off --output eDP-1 --primary --mode 1920x1200 --pos 0x0 --rotate normal && \
|
|
after_screen_change
|
|
;;
|
|
"Home")
|
|
xrandr --output eDP-1 --off --output DP-3-2 --primary --mode 2560x1440 --pos 0x0 --rotate normal && \
|
|
after_screen_change
|
|
;;
|
|
,*)
|
|
echo "== ! missing or invalid argument ! =="
|
|
exit 2
|
|
esac
|
|
|
|
exit 0
|
|
#+end_src
|
|
|
|
* =print-esrf= - Print on Rnice
|
|
:PROPERTIES:
|
|
:CUSTOM_ID: print-esrf
|
|
:END:
|
|
|
|
#+begin_src bash :tangle ~/.local/bin/print-esrf
|
|
nbpage=$(echo -e '1\n2\n4' | rofi -dmenu -no-custom -p 'Number of pages per sheet' -l 20);
|
|
sides=$(echo -e 'one-sided\ntwo-sided-long-edge\ntwo-sided-short-edge' | rofi -dmenu -no-custom -p 'Two Sided:' -l 20);
|
|
media=$(echo -e 'A4\nA3' | rofi -dmenu -no-custom -p 'Size:' -l 20);
|
|
printer=$(echo -e 'ctb127c1u\nctb110c1u' | rofi -dmenu -no-custom -p 'Size:' -l 20);
|
|
|
|
if [[ -z "$nbpage" || -z "$sides" || -z "$media" || -z "$printer" ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
rsync -zaP "$1" dehaeze@rnice:/home/esrf/dehaeze/Downloads/to-be-printed.pdf && \
|
|
ssh rnice "lpr -o media=$media -o sides=$sides -o number-up=$nbpage -P $printer /home/esrf/dehaeze/Downloads/to-be-printed.pdf";
|
|
#+end_src
|
|
|
|
* =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
|
|
cd ~/Cloud/brain/pdfs/ && ls *.pdf | rofi -dmenu -lines 20 | xargs -I {} zathura {}
|
|
#+end_src
|
|
|
|
* =torrent-add= - Add Torrent using =stig=
|
|
Used to add notification when a torrent is added.
|
|
#+begin_src bash :tangle ~/.local/bin/torrent-add
|
|
stig add $@ && \
|
|
dunstify --replace=22221 "Stif" 'Torrent Added' || \
|
|
dunstify --replace=22221 --urgency=critical "Stif" 'Failed'
|
|
#+end_src
|