saint-13 / Linux_Dynamic_Wallpapers

Dynamic Wallpapers for Linux
836 stars 75 forks source link

can't select options in terminal when install #48

Open Tallal64 opened 11 months ago

Tallal64 commented 11 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 11 months ago

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

idhirandar commented 10 months ago

+1

AulysV commented 9 months ago

Same, tought it was a whiptail issue Please fix it

wathika-eng commented 7 months ago

Seems the developer was unable to fix it

hectorpadin1 commented 7 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 7 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 7 months ago

The issue is still the same

pustoslov commented 6 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 4 months ago

@pustoslov really help me a lot

AulysV 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

It works, you should try spacebar to select one of the options, and then press enter to exit

michalmielczynski commented 3 months ago

UPDATE: I was to quick with conclusions - the ACTUAL way I have it working is

  1. clone the repo
  2. chmod +x ./Interactive_Install.sh
  3. ./Interactive_Install.sh

scratch that:

ok, just to confirm - the script is working if you:

  • create a local file eg. dynamicWallpapers.sh
  • paste the content of the script in the link
  • set the +x permission to run the script and run it in terminal

you should be able to select normally.