mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-11-24 14:59:46 +01:00
7 lines
138 B
Bash
Executable File
7 lines
138 B
Bash
Executable File
#!/bin/sh
|
|
if command -v vesktop >/dev/null 2>&1; then
|
|
exec vesktop --force-device-scale-factor=1.2 "$@"
|
|
else
|
|
exec discord "$@"
|
|
fi
|