Add explicit profile override for firefox desktop entry

This commit is contained in:
2025-11-17 09:00:42 +01:00
parent c216210f37
commit c54fbaf36f
4 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
[Desktop Entry]
Exec=/bin/sh -c '/usr/bin/firefox --profile "$HOME/.mozilla/firefox/profile-default" %u'

3
bin/firefox-default Executable file
View File

@@ -0,0 +1,3 @@
#!/usr/bin/env bash
exec /usr/bin/firefox --profile "$HOME/.mozilla/firefox/profile-default"

View File

@@ -99,6 +99,9 @@ dotfiles:
to: .config/screencfg.toml to: .config/screencfg.toml
- from: cargo/config.toml - from: cargo/config.toml
to: .local/state/cargo/config.toml to: .local/state/cargo/config.toml
- from: applications
to: .local/share/applications
dir: true
dotfiles_remove: dotfiles_remove:
- .gitconfig - .gitconfig
- .vimrc - .vimrc

View File

@@ -8,7 +8,7 @@ export PATH="${HOME}/bin:${PATH}"
export EDITOR="helix" export EDITOR="helix"
export VISUAL="helix" export VISUAL="helix"
export BROWSER="firefox" export BROWSER="firefox-default"
export PAGER="less" export PAGER="less"
export LESS="FRX" export LESS="FRX"