From fc767afc7a761abb61a0b4c962020f9d6e7c3e69 Mon Sep 17 00:00:00 2001 From: Ryan Kes <> Date: Sat, 13 Mar 2021 15:32:31 +0100 Subject: [PATCH] feat(fish): updated config for arch install --- fish/.config/omf/init.fish | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/fish/.config/omf/init.fish b/fish/.config/omf/init.fish index fc2c154..41979f5 100644 --- a/fish/.config/omf/init.fish +++ b/fish/.config/omf/init.fish @@ -3,11 +3,6 @@ if status is-login if test -z "$DISPLAY" -a $XDG_VTNR = 1 set -xg -x SXHKD_SHELL '/usr/bin/sh' - # Enable numberlock - if [ -x "/usr/bin/numlockx" ] - /usr/bin/numlockx on - end - exec startx -- -keeptty end end @@ -33,7 +28,6 @@ end path_if_exists ~/.local/share/yarn/global/node_modules/.bin path_if_exists ~/.local/bin path_if_exists ~/.emacs.d/bin -path_if_exists ~/.local/share/go/bin path_if_exists ~/.local/share/cargo/bin path_if_exists ~/.local/share/go/bin @@ -41,14 +35,10 @@ path_if_exists ~/.local/share/go/bin set GPG_TTY (tty) # Set default browser -if [ -e "/usr/bin/brave" ] +if [ -e "/sbin/brave" ] set -xg BROWSER "brave" -else - if [ -e "/usr/bin/firefox" ] +else if [ -e "/sbin/firefox" ] set -xg BROWSER "firefox" - else if [ -e "/usr/bin/iceweasel" ] - set -xg BROWSER "iceweasel" - end end # Set default terminal @@ -103,6 +93,9 @@ set -xg XDG_VIDEOS_DIR $HOME/Videos # Npm set -xg NPM_CONFIG_USERCONFIG $XDG_CONFIG_HOME/npm/npmrc +# Set qt theme +set -xg QT_QPA_PLATFORMTHEME qt5ct + # nvim alias abbr --add v 'nvim' abbr --add sv 'sudo nvim'