Skip to content

Commit d273cae

Browse files
authored
Bugfix/Git token, FireFox favorites (#37)
* Fixed git configuration * Fixed FireFox favorites reference * Updated readme, changelog
1 parent 51f1f29 commit d273cae

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,29 @@
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [1.2.1] - 2022-11-06
6+
7+
### Fixed
8+
9+
- Fixed git configuration
10+
- Fixed FireFox favorites reference
11+
12+
### Updated
13+
14+
- Updated docs
15+
516
## [1.2.0] - 2022-09-16
617

18+
### Updated
19+
720
- Updated `asdf`
821
- Updated `vscode` installing flow
922
- Updated docs
1023

1124
## [1.1.0] - 2022-09-16
1225

26+
### Updated
27+
1328
- Updated to Ruby 3.1.2
1429
- Added Postgres dependencies
1530

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Automation script for spinning-up Ruby developer environment. Configure your dev
1010
* Installs & configures [MRI Ruby](https://www.ruby-lang.org/en/downloads/releases) 3.1.2 with default gem set
1111
* Installs [Postgres](https://www.postgresql.org/download/linux/ubuntu) & system deps
1212
* Installs & configures [Visual Studio Code](https://code.visualstudio.com)
13+
* Addes favorites to Gnome dock panel
1314

1415
## Requirements/Preconditions
1516

setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function step_6() {
8888
wget https://raw.githubusercontent.com/RubyWorkout/frs/master/.gitignore_global
8989
credentials="$HOME/.my-credentials"
9090
echo -n "" > ${credentials}
91-
echo "https://${git_profile}:${git_token}@github.com" >> ${credentials}
91+
echo "https://${git_username}:${git_token}@github.com" >> ${credentials}
9292
git config --global user.email ${email}
9393
git config --global user.name ${name}
9494
git config --global credential.helper "store --file ${credentials}"
@@ -109,7 +109,7 @@ function step_7() {
109109
# Add shortcuts to dock
110110
function step_8() {
111111
step_title $1 "Adding favorites to dock"
112-
gsettings set org.gnome.shell favorite-apps "['firefox.desktop', 'org.gnome.Nautilus.desktop', 'snap-store_ubuntu-software.desktop', 'org.gnome.Terminal.desktop', 'code.desktop']"
112+
gsettings set org.gnome.shell favorite-apps "['firefox.desktop', 'firefox_firefox.desktop', 'org.gnome.Nautilus.desktop', 'snap-store_ubuntu-software.desktop', 'org.gnome.Terminal.desktop', 'code.desktop']"
113113
}
114114

115115
# Reboot OS

0 commit comments

Comments
 (0)