up
This commit is contained in:
parent
fa92a9529b
commit
39046fe1f2
@ -0,0 +1,10 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=Vesktop
|
||||||
|
GenericName=Internet Messenger
|
||||||
|
Comment=Vesktop is a free/libre cross platform desktop app aiming to give you a snappier Discord experience with Vencord pre-installed
|
||||||
|
Type=Application
|
||||||
|
Exec=/usr/bin/vesktop
|
||||||
|
Icon=vesktop
|
||||||
|
Categories=Network;InstantMessaging;
|
||||||
|
StartupWMClass=Vesktop;
|
||||||
|
Keywords=discord;vencord;vesktop
|
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}
|
||||||
|
|
||||||
|
# Allow users to override command-line options
|
||||||
|
if [[ -f $XDG_CONFIG_HOME/vesktop-flags.conf ]]; then
|
||||||
|
VESKTOP_USER_FLAGS="$(grep -v '^#' $XDG_CONFIG_HOME/vesktop-flags.conf)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Launch
|
||||||
|
exec electron /usr/lib/vesktop/app.asar $VESKTOP_USER_FLAGS "$@"
|
Loading…
Reference in New Issue
Block a user