Suppression de scripts inutilsés

This commit is contained in:
Hippolyte Chauvin 2023-12-01 12:44:35 +01:00
parent 9bc42d3c4d
commit a21ea002bc
6 changed files with 0 additions and 83 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"

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[@]}"