2018-06-12 13:10:25 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "Enter OpenWeatherMap API key"
|
|
|
|
read line
|
|
|
|
echo $line | secret-tool store --label='OpenWeatherMap API Key' openweathermap api_key
|
2018-08-29 19:01:04 +00:00
|
|
|
|
2019-01-20 10:11:36 +00:00
|
|
|
echo "Enter KeePassXC master password"
|
|
|
|
read line
|
|
|
|
echo $line | secret-tool store --label='KeePassXC master password' keepassxc master
|
|
|
|
|
2018-08-29 19:01:04 +00:00
|
|
|
echo "Enter git name"
|
|
|
|
read name
|
|
|
|
git config --global user.name $name
|
|
|
|
|
|
|
|
echo "Enter git email"
|
|
|
|
read email
|
|
|
|
git config --global user.email $email
|