diff options
| -rw-r--r-- | config/qutebrowser/config.py | 1 | ||||
| -rw-r--r-- | config/screen/screenrc | 1 | ||||
| -rwxr-xr-x | config/x11/xinitrc | 7 | ||||
| -rwxr-xr-x | config/zsh/zprofile | 1 |
4 files changed, 7 insertions, 3 deletions
diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index a6112ac..783c932 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -42,6 +42,7 @@ c.url.searchengines = { 'pd': 'https://pandas.pydata.org/pandas-docs/stable/search.html?q={}', 'sk': 'https://scikit-learn.org/stable/search.html?q={}', 'imdb': 'https://www.imdb.com/find?q={}', + 'wiby': 'https://wiby.me/?q={}', } c.fonts.default_family = ['Fira Mono', 'Baekmuk', 'Symbola'] diff --git a/config/screen/screenrc b/config/screen/screenrc new file mode 100644 index 0000000..531c9ac --- /dev/null +++ b/config/screen/screenrc @@ -0,0 +1 @@ +term xterm-256color diff --git a/config/x11/xinitrc b/config/x11/xinitrc index 0d422c0..5eae132 100755 --- a/config/x11/xinitrc +++ b/config/x11/xinitrc @@ -1,7 +1,10 @@ -#!/bin sh +#!/bin/sh redshift & # filter blue light dunst & # notification daemon +# certain event cause rate to reset (https://wiki.archlinux.org/title/Xorg/Keyboard_configuration) +# -ardelay milliseconds +# -arinterval milliseconds xset r rate 200 50 # delay before keyrepeat and keyrepeat rate unclutter --timeout 10 --fork # hide mouse after 2s @@ -26,5 +29,3 @@ case "$(cat /etc/hostname)" in esac exec xmonad - -# vim:ft=sh diff --git a/config/zsh/zprofile b/config/zsh/zprofile index 408419a..4fb59e0 100755 --- a/config/zsh/zprofile +++ b/config/zsh/zprofile @@ -29,6 +29,7 @@ export NPM_CONFIG_USERCONFIG=$XDG_CONFIG_HOME/npm/npmrc export VIMINIT='let $MYVIMRC="$XDG_CONFIG_HOME/vim/vimrc" | source $MYVIMRC' export IPYTHONDIR="$XDG_CONFIG_HOME/ipython" export JUPYTER_CONFIG_DIR="$XDG_CONFIG_HOME/jupyter" +export SCREENRC="$XDG_CONFIG_HOME/screen/screenrc" # data export GNUPGHOME="$XDG_DATA_HOME/gnupg" export GOPATH="$XDG_DATA_HOME/go" |
