Compare commits

...

2 commits

Author SHA1 Message Date
Hippolyte Chauvin
f17dd5aad2 Réécriture de qrencode et changement de nom pour IWD 2023-12-01 13:03:41 +01:00
Hippolyte Chauvin
a21ea002bc Suppression de scripts inutilsés 2023-12-01 12:44:35 +01:00
8 changed files with 14 additions and 100 deletions

View file

@ -1,5 +0,0 @@
#!/bin/sh
exec xargs /usr/bin/deezer \
"$@" \
< ~/.config/electron13-flags.conf

View file

@ -1 +0,0 @@
waylectron

View file

@ -1 +0,0 @@
waylectron

View file

@ -1,15 +0,0 @@
#!/bin/sh -e
display="$(grep "$LOGNAME" /etc/tigervnc/vncserver.users | head -n 1 | awk -F '=' '{ print $1 }')"
echo "Using display: $display"
test -n "$display"
set -x
cd
exec \
screen \
-d \
-m \
vncserver \
"$display"

14
bin/iwqr Executable file
View file

@ -0,0 +1,14 @@
#!/bin/sh -e
if [ "$(whoami)" != root ]; then
exec sudo "$0" "$@"
fi
cd /var/lib/iwd
field='Connected network'
ssid=$(iwctl station wlan show | grep '^\s*'"${field}"'\s' | xargs | sed "s/^${field} //")
unset field
passphrase=$(awk -F = '($1 == "'"${1}"'") { print $2 }' "${ssid}.psk")
qrencode -s 1 -l H -o - "WIFI:T:WPA;S:${ssid};P:${passphrase};;" | catimg -H 0 -

View file

@ -1,8 +0,0 @@
#!/bin/sh -e
pid="$(pidof "$1")"
shift
prio="${1:--22}"
sudo renice "$prio" "$pid"

View file

@ -1,53 +0,0 @@
#!/bin/bash
# Functions
# Throw
function throw {
>&2 echo "$1"
exit "$2"
}
# Throw a value
function throw-value {
throw "Invalid value for \"$1\": \"$2\"" "$3"
}
# Variables
selection_mode="$1"
saving_mode="$2"
screenshot_d="/tmp"
_command=()
# Command building
_command+=("maim")
case "$selection_mode" in
"full")
:
;;
"area")
_command+=("-s")
;;
*)
throw-value "selection mode" "$selection_mode" 1
;;
esac
case "$saving_mode" in
"clip")
_command+=("|")
_command+=("xclip" "-selection" "clipboard" "-t" "image/png")
;;
"file")
_command+=(">" "${screenshot_d}/$(printf '%s-screenshot-%s.png' "$LOGNAME" "$(date +'%Y_%m_%d_%s')")")
;;
*)
throw-value "saving mode" "$saving_mode" 2
;;
esac
# Debug
#echo "${_command[@]}"
#exit 0
# Execution
"${_command[@]}"

View file

@ -1,17 +0,0 @@
#!/bin/sh -e
if [ "$(whoami)" != root ]; then
exec sudo "$0" "$@"
fi
cd "/var/lib/connman/$(connmanctl services | head -n 1 | awk '{ print $NF }')"
get_var() {
awk -F = '($1 == "'"${1}"'") { print $2 }' settings
}
ssid="$(get_var Name)"
psk="$(get_var Passphrase)"
qrencode -s 1 -l H -o - "WIFI:T:WPA;S:${ssid};P:${psk};;" | catimg -H 0 -