diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2023-05-31 19:49:37 -0700 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2023-05-31 19:49:37 -0700 |
commit | ad382962e017140c8f2a0b0df520fb9c7f27a38b (patch) | |
tree | aa97112b885c409c4e372e4ecbfdb860b8c35681 /home/xyz/.profile | |
parent | ff6261c2772612a7a5949737660614ee24b61587 (diff) |
edit some files
Diffstat (limited to 'home/xyz/.profile')
-rw-r--r-- | home/xyz/.profile | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/home/xyz/.profile b/home/xyz/.profile index f6dd5e8c..051d6345 100644 --- a/home/xyz/.profile +++ b/home/xyz/.profile @@ -21,7 +21,7 @@ export HISTFILESIZE=15000 export HISTCONTROL=ignorespace export EDITOR=nvim -export BROWSER=firefox +#export BROWSER=firefox export PAGER=less # -X seems can keep the output if exit less? # -F is useful when sdcv need user to manually select similar word, after selection if no -F less will not quit if one screen @@ -30,16 +30,16 @@ export PAGER=less # CALCURSE_PAGER less can't use -F, else ? and > hotkey will only blink the text export LESS=-FRXi -export SDCV_PAGER="$PAGER" -export SDCV_HISTSIZE=10000 +#export SDCV_PAGER="$PAGER" +#export SDCV_HISTSIZE=10000 export MANPAGER='nvim -M +Man!' # This MANSECT prioritize POSIX manpages. After use it for a long time, I think it is suitable for me any more. #export MANSECT='1p:1:n:l:8:3p:3:0p:0:2:5:4:9:6:7' -export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket" +#export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket" export INPUTRC="$XDG_CONFIG_HOME/.inputrc" # Thanks to https://github.com/trialuser02/qt6gtk2/pull/5 # Now qt5 with aur qt5-styleplugins and qt6 with aur qt6gtk2 makes qt5 and qt6 appearance universal! -export QT_QPA_PLATFORMTHEME=gtk2 +#export QT_QPA_PLATFORMTHEME=gtk2 #export QT_STYLE_OVERRIDE=kvantum #export SXHKD_SHELL=sh # enable color for `tree` command, not forced @@ -47,10 +47,10 @@ export CLICOLOR=1 # for pacdiff, without using aur neovim-drop-in or neovim-symlinks export DIFFPROG='nvim -d' export MAKEFLAGS="-j$(nproc --all)" -export DOTREMINDERS="$HOME/programs/reminders/.reminders" -export GTK_IM_MODULE=fcitx -export QT_IM_MODULE=fcitx -export XMODIFIERS=@im=fcitx +#export DOTREMINDERS="$HOME/programs/reminders/.reminders" +#export GTK_IM_MODULE=fcitx +#export QT_IM_MODULE=fcitx +#export XMODIFIERS=@im=fcitx # use sudo find for some files or dirs that has no permission ex: ~/.cache/paru/clone/ #export FZF_DEFAULT_COMMAND="fd --no-ignore --hidden --exclude .git" #export FZF_CTRL_T_COMMAND="fd --absolute-path --no-ignore --hidden --exclude .git" @@ -81,7 +81,7 @@ export SCR_HEIGHT=1080 #export GDK_SCALE=2 #export GDK_DPI_SCALE=0.5 -playerctld daemon +#playerctld daemon # must source .bashrc after export _ZO_ECHO=1 and INPUTRC=..., else these two env will has no effect, don't know why # here `. ~/.bashrc` same as `source ~/.bashrc`, see `source filename` in `man bash`, and `. file` in `man dash` @@ -92,6 +92,6 @@ playerctld daemon # startx when login, should be put after environmental variables for .xinitrc to use # use `[ "$XDG_VTNR" ]` to avoid "-bash: [: : integer expression expected" warning/error message, when `sudo su - xyz` or ssh into a remote server, not sure if best practice or not -if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then - exec startx -fi +#if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then +# exec startx +#fi |