Compare commits
No commits in common. "11203304111f2216edd34e9972ccdaf40519a767" and "22578ad686c94415b9e6f35fac840d57e9996446" have entirely different histories.
1120330411
...
22578ad686
2 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
arRPCdir="$HOME/.local/share/arRPC"
|
arRPCdir="$HOME/src/arRPC"
|
||||||
Vesktopdir="$HOME/.local/share/Vesktop"
|
Vesktopdir="$HOME/src/Vesktop"
|
||||||
|
|
||||||
if [ ! $(which node) ]; then
|
if [ ! $(which node) ]; then
|
||||||
echo "Pleases install nodejs and try again."
|
echo "Pleases install nodejs and try again."
|
||||||
|
@ -39,9 +39,9 @@ run_arRPC () {
|
||||||
|
|
||||||
run_vesktop () {
|
run_vesktop () {
|
||||||
echo "Starting Vesktop"
|
echo "Starting Vesktop"
|
||||||
if [ ! -d $Vesktopdir ]; then install_vesktop; fi
|
if [ ! -d $HOME/src/Vesktop ]; then install_vesktop; fi
|
||||||
if [ ! -d $Vesktopdir/dist/linux-unpacked ]; then build_vesktop; fi
|
if [ ! -d $HOME/src/Vesktop/dist/linux-unpacked ]; then build_vesktop; fi
|
||||||
cd $Vesktopdir/dist/linux-unpacked
|
cd $HOME/src/Vesktop/dist/linux-unpacked
|
||||||
./vesktop \
|
./vesktop \
|
||||||
--enable-features=UseOzonePlatform,WaylandWindowDecorations \
|
--enable-features=UseOzonePlatform,WaylandWindowDecorations \
|
||||||
--ozone-platform-hint=auto
|
--ozone-platform-hint=auto
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 240 KiB |
Loading…
Reference in a new issue