From a0de925ff39e1cce74ae316e03406731a56d2fef Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Sat, 14 May 2022 21:00:08 -0500 Subject: [PATCH] Work fixes --- common/bin/install-user-chrome-css.fish | 5 ++++- common/fish/paths.fish | 2 ++ common/tmux/conf | 2 -- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/common/bin/install-user-chrome-css.fish b/common/bin/install-user-chrome-css.fish index 93bba10..e725881 100755 --- a/common/bin/install-user-chrome-css.fish +++ b/common/bin/install-user-chrome-css.fish @@ -1,6 +1,9 @@ #!/usr/bin/env fish -set profile_dirs ~/.mozilla/firefox/*.dev-edition-default +set profile_dirs "$HOME/.mozilla/firefox/*.dev-edition-default" +if test (uname) = Darwin + set profile_dirs "$HOME/Library/Application Support/Firefox/Profiles/*.dev-edition-default" +end for p in $profile_dirs mkdir -p $p/chrome diff --git a/common/fish/paths.fish b/common/fish/paths.fish index cf5c303..046c483 100644 --- a/common/fish/paths.fish +++ b/common/fish/paths.fish @@ -26,6 +26,8 @@ set --export --universal GOPATH $HOME/.go set --export --universal GOBIN $GOPATH/bin set paths_candidates \ + /opt/homebrew/bin \ + /opt/homebrew/sbin \ $DOTFILES_PATH/common/bin \ $HOME/.bin \ $HOME/.local/bin \ diff --git a/common/tmux/conf b/common/tmux/conf index b56729e..e848b9d 100644 --- a/common/tmux/conf +++ b/common/tmux/conf @@ -22,8 +22,6 @@ bind M-l source-file "$XDG_CONFIG_HOME/tmux/layouts/dev.tmux" set -g update-environment "WAYLAND_DISPLAY DISPLAY" -# TODO: check if kitty is installed? -set -g default-terminal "kitty" set -g mouse on set -g escape-time 0 set -g monitor-activity on