From 5bdaff62487bd6d804585884698c92283d7c8ea4 Mon Sep 17 00:00:00 2001 From: tiyn Date: Mon, 24 Nov 2025 01:41:42 +0100 Subject: [PATCH] discord: use vesktop if installed --- .local/bin/tools/discord | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 .local/bin/tools/discord diff --git a/.local/bin/tools/discord b/.local/bin/tools/discord new file mode 100755 index 0000000..b229cc7 --- /dev/null +++ b/.local/bin/tools/discord @@ -0,0 +1,6 @@ +#!/bin/sh +if command -v vesktop >/dev/null 2>&1; then + exec vesktop --force-device-scale-factor=1.2 "$@" +else + exec discord "$@" +fi