diff --git a/.Xresources b/.Xresources index 68958af..9afcbc8 100644 --- a/.Xresources +++ b/.Xresources @@ -45,3 +45,6 @@ *.color13: nord15 *.color14: nord7 *.color15: nord6 + +Xcursor.theme: Nordzy-cursors +Xcursor.size: 32 diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 041b65d..5018781 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -5,10 +5,19 @@ set --export MANPAGER "sh -c 'col -bx | bat -l man -p'" set --export QT_QPA_PLATFORMTHEME "gtk2" if status is-interactive + # Commands to run in interactive sessions can go here end +# Start X at login +if status --is-login + if test -z "$DISPLAY" -a $XDG_VTNR = 1 + exec startx -- -keeptty + end +end + fish_add_path "$HOME/.local/bin" +fish_add_path "$HOME/.cargo/bin" source "$HOME/.config/fish/abbreviations.fish" diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 5ab35f1..ce4991d 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -100,6 +100,8 @@ def get_wallpaper(screen_number): wallpaper = f'{wallpaper_dir}p2_1920x1080.png' case '3840x1080': wallpaper = f'{wallpaper_dir}gunter_throne.png' + case '5120x1440': + wallpaper = f'{wallpaper_dir}p4_5120x1440.png' case '5760x1080': wallpaper = f'{wallpaper_dir}gunter_throne.png' case '1760x1262': diff --git a/.vimrc b/.vimrc index 77e027d..d2a7df4 100644 --- a/.vimrc +++ b/.vimrc @@ -25,6 +25,7 @@ Plug 'tpope/vim-commentary' Plug 'tpope/vim-surround' Plug 'ryanoasis/vim-devicons' Plug 'xuhdev/vim-latex-live-preview' +Plug 'rust-lang/rust.vim' call plug#end() colorscheme nord