saint-13 / Linux_Dynamic_Wallpapers

Dynamic Wallpapers for Linux
742 stars 61 forks source link

can't select options in terminal when install #48

Open Tallal64 opened 7 months ago

Tallal64 commented 7 months ago

when i'm installing it using "RECOMMEND: Easy, Time and data saving ⭐" method, a GUI open in my terminal and let me choose themes but i cannot select any of them.

image_2023-12-09_084816822

farazalidev commented 7 months ago

i am also unable to select from options, when i press Up or Down key it prints some text. image

idhirandar commented 6 months ago

+1

AulysV commented 4 months ago

Same, tought it was a whiptail issue Please fix it

wathika-eng commented 3 months ago

Seems the developer was unable to fix it

hectorpadin1 commented 3 months ago

The recommended installation suggest this command:

curl -s "https://raw.githubusercontent.com/saint-13/Linux_Dynamic_Wallpapers/main/Interactive_Install.sh" | sudo bash

However, you can split the command, which should work:

$ curl -s "https://raw.githubusercontent.com/saint-13/Linux_Dynamic_Wallpapers/main/Interactive_Install.sh" > install.sh
$ sudo bash install.sh

Or just move sudo to the beggining and then pipe the output to bash:


$ sudo curl -s "https://raw.githubusercontent.com/saint-13/Linux_Dynamic_Wallpapers/main/Interactive_Install.sh" | bash
wathika-eng commented 3 months ago

The recommended installation suggest this command:

curl -s "https://raw.githubusercontent.com/saint-13/Linux_Dynamic_Wallpapers/main/Interactive_Install.sh" | sudo bash

However, you can split the command, which should work:

$ curl -s "https://raw.githubusercontent.com/saint-13/Linux_Dynamic_Wallpapers/main/Interactive_Install.sh" > install.sh
$ sudo bash install.sh

Or just move sudo to the beggining and then pipe the output to bash:

$ sudo curl -s "https://raw.githubusercontent.com/saint-13/Linux_Dynamic_Wallpapers/main/Interactive_Install.sh" | bash

image

chapainaashish commented 3 months ago

The issue is still the same

pustoslov commented 2 months ago

To use this installation method you should start bash in interactive mode using -i option. The full command will look like this: curl -s "https://raw.githubusercontent.com/saint-13/Linux_Dynamic_Wallpapers/main/Interactive_Install.sh" | sudo bash -i To select a theme, use the space bar.

wifiBlack commented 2 days ago

@pustoslov really help me a lot