mirror of
https://github.com/lordmathis/dotfiles.git
synced 2025-11-05 17:24:22 +00:00
14 lines
286 B
Bash
Executable File
14 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Enter OpenWeatherMap API key"
|
|
read line
|
|
echo $line | secret-tool store --label='OpenWeatherMap API Key' openweathermap api_key
|
|
|
|
echo "Enter git name"
|
|
read name
|
|
git config --global user.name $name
|
|
|
|
echo "Enter git email"
|
|
read email
|
|
git config --global user.email $email
|