scripts/qutebrowser: remove

master
Michele Guerini Rocco 2024-01-10 08:55:06 +01:00
parent be4fac1ac1
commit 512ad2f5c1
Signed by: rnhmjoj
GPG Key ID: BFBAF4C975F76450
2 changed files with 0 additions and 19 deletions

Binary file not shown.

View File

@ -1,19 +0,0 @@
#!/bin/sh
bin=$(env PATH="$(echo "$PATH" | sed "s|$(dirname "$0"):||g")" sh -c 'command -v qutebrowser')
flags="--qt-flag ignore-gpu-blocklist
--qt-flag enable-gpu-rasterization
--qt-flag enable-native-gpu-memory-buffers
--qt-flag num-raster-threads=4
--qt-flag enable-oop-rasterization"
if pgrep qutebrowser >/dev/null; then
exec "$bin" $flags "$@"
else
url="$1"
ver='1.6.3'
proto=1
sock="$XDG_RUNTIME_DIR/qutebrowser/ipc-$(printf "%s" "$USER" | md5sum | cut -d\ -f1)"
fmt='{"args": ["%s"], "target_arg": null, "version": "%s", "protocol_version": %d, "cwd": "%s"}\n'
printf "$fmt" "$url" "$ver" "$proto" "$PWD" | nc -U "$sock" 2>/dev/null || exec "$bin" $flags "$@" &
fi