6 lines
144 B
Bash
6 lines
144 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Enter OpenWeatherMap API key"
|
||
|
read line
|
||
|
echo $line | secret-tool store --label='OpenWeatherMap API Key' openweathermap api_key
|