Skip to content

Commit

Permalink
Update README for consistency and updated settings
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzheiber committed Oct 14, 2024
1 parent 93db690 commit ad9b618
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 27 deletions.
16 changes: 5 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,15 @@ These are not automated (yet)
```console
cd ~
git init .
git remote add <url-to-git-dotfile-repo>
git remote add origin <url-to-git-dotfile-repo>
rm .bashrc # Will be replaced by git copy
git pull origin paperclip
```

#### sudo with fingerprint authentication

Add a fingerprint in the GNOME user account management settings. Then:

```console
sudo pam-auth-update
```
Expand All @@ -74,19 +76,16 @@ and select "Fingerprint authentication" in addition to the rest of the already s
#### Firefox

- Sign into Firefox
- Set DuckDuckGo as default search engine
- `about:config`
- `media.ffmpeg.vaapi.enabled` > `true`
- `media.ffvpx.enabled` > `false`
- `media.rdd-vpx.enabled` > `false`
- `media.navigator.mediadatadecoder_vpx_enabled` > `true`
- `extensions.pocket.enabled` > `false`
- `extensions.pocket.api` > ""
- `privacy.query_stripping.enabled` > `true`
- `privacy.query_stripping.enabled.pbmode` > `true`
- `dom.private-attribution.submission.enabled` > `false`
- Enable autoclean in Cookie AutoDelete
- Sign into Bitwarden
- Sign into Bitwarden (mind the right account)

#### GSConnect

Expand All @@ -96,19 +95,14 @@ and select "Fingerprint authentication" in addition to the rest of the already s
#### Google Chrome

- Install uBlock Origin
- Enable `#enable-webrtc-pipewire-capturer` in `chrome://flags`

#### neovim

- `vim +PlugInstall`
- `vim +UpdateRemotePlugins`

#### Chrome

- Enable `#enable-webrtc-pipewire-capturer` in `chrome://flags`

#### Other

- `awscli` (needs its configuration)
- `crowbar`
- `gopass`
- `keyring` (mutt)
25 changes: 15 additions & 10 deletions mitamae/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,22 @@
user node[:login_user]
end

directory "/home/#{node[:login_user]}/Code/thoughtworks" do
mode '0755'
owner node[:login_user]
group node[:login_user]
end
%w{
private
1k5
}.each do |dir|
directory "/home/#{node[:login_user]}/Code/#{dir}" do
mode '0755'
owner node[:login_user]
group node[:login_user]
end

remote_file "/home/#{node[:login_user]}/Code/thoughtworks/gitconfig" do
source 'files/tw_gitconfig'
mode '0644'
owner node[:login_user]
group node[:login_user]
remote_file "/home/#{node[:login_user]}/Code/#{dir}/gitconfig" do
source "files/#{dir}_gitconfig"
mode '0644'
owner node[:login_user]
group node[:login_user]
end
end

file "/home/#{node[:login_user]}/.npmrc" do
Expand Down
6 changes: 6 additions & 0 deletions mitamae/files/1k5_gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[user]
email = [email protected]
name = Moritz Heiber
signingkey = E9F5CB10
[commit]
gpgsign = true
6 changes: 6 additions & 0 deletions mitamae/files/private_gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[user]
email = [email protected]
name = Moritz Heiber
signingkey = E3D5E107
[commit]
gpgsign = true
6 changes: 0 additions & 6 deletions mitamae/files/tw_gitconfig

This file was deleted.

0 comments on commit ad9b618

Please sign in to comment.