Skip to content

Commit 1830111

Browse files
author
Cam
authored
Add files via upload
1 parent 5864a56 commit 1830111

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

install.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,17 @@ printf 'KERNEL=="event[0-9]*",SUBSYSTEM=="input",GROUP="razerInputGroup",MODE="6
2929

3030
LOGINTYPE=$(loginctl show-session $(loginctl | grep $(whoami) | awk '{print $1}') -p Type)
3131
if [ "$LOGINTYPE" = "Type=wayland" ]; then
32-
./src/_installWayland.sh
33-
echo "Wayland"
32+
sh ./src/_installWayland.sh
3433
else
35-
./src/_installX11.sh
34+
sh ./src/_installX11.sh
3635
fi
3736

3837
if [ "$LOGINTYPE" = "Type=wayland" ]; then
3938
while true; do
4039
read -p "Naga for Wayland is currently installing, do you want to install for X11 too ? (recommended) y/n" yn
4140
case $yn in
4241
[Yy]*)
43-
./src/_installX11.sh
42+
sh ./src/_installX11.sh
4443
break
4544
;;
4645
[Nn]*) break ;;
@@ -52,7 +51,7 @@ else
5251
read -p "Naga for X11 is currently installing, do you want to install for Wayland too ? (recommended) y/n" yn
5352
case $yn in
5453
[Yy]*)
55-
./src/_installWayland.sh
54+
sh ./src/_installWayland.sh
5655
break
5756
;;
5857
[Nn]*) break ;;

0 commit comments

Comments
 (0)