From c46558cbb2fe10d691d1869ab26d3e191a0e2bd0 Mon Sep 17 00:00:00 2001 From: Roland Thomas Date: Tue, 17 Oct 2023 13:13:08 -0400 Subject: [PATCH] Updates --- .config/fish/config.fish | 1 + .config/flameshot/flameshot.ini | 2 +- .config/pkg.list | 5 +++++ .config/qtile/config.py | 17 ++++++++--------- .vimrc | 1 + 5 files changed, 16 insertions(+), 10 deletions(-) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index bd2cd08..ba6f4fd 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -42,5 +42,6 @@ if status --is-login end end +pyenv init - | source starship init fish | source diff --git a/.config/flameshot/flameshot.ini b/.config/flameshot/flameshot.ini index 3f6b026..e7f8b6a 100644 --- a/.config/flameshot/flameshot.ini +++ b/.config/flameshot/flameshot.ini @@ -6,6 +6,6 @@ drawColor=#bf616a drawFontSize=16 drawThickness=10 saveAsFileExtension=png -savePath=/home/roland/Pictures/screenshots +savePath=/home/roland/Pictures uiColor=#5e81ac userColors=picker, #2E3440, #4C566A, #D8DEE9, #81A1C1, #BF616A, #D08770, #EBCB8B, #A3BE8C, #B48EAD diff --git a/.config/pkg.list b/.config/pkg.list index 0223092..6c92d23 100644 --- a/.config/pkg.list +++ b/.config/pkg.list @@ -69,6 +69,7 @@ intel-ucode irssi jc jdk-openjdk +john jq kitty lesspipe @@ -82,6 +83,7 @@ libisoburn libreoffice-fresh libselinux libsepol +libvirt linux linux-firmware linux-lts @@ -138,6 +140,8 @@ pulseaudio pulseaudio-alsa pulseaudio-jack pulseaudio-module-xrdp +pycharm-community-edition +pyenv python-aiohttp python-aiosmtpd python-black @@ -196,6 +200,7 @@ texlive-music texlive-pictures texlive-pstricks texlive-publishers +tk tmux toilet tokei diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 348557f..4a2b457 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -104,13 +104,16 @@ def get_wallpaper(screen_number): try: size = screens_.stdout.split()[screen_number] except IndexError: - size = screens_.stdout.split()[0] + try: + size = screens_.stdout.split()[0] + except IndexError: + size = "1920x1080" except AttributeError: size = screens_ match size: case "3440x1440": - wallpaper = f"{wallpaper_dir}p3_3440x1440.png" + wallpaper = f"{wallpaper_dir}p6_3440x1440.png" case "1920x1080": wallpaper = f"{wallpaper_dir}p3_1920x1080.png" case "3840x1080": @@ -472,7 +475,7 @@ screens = [ close_button_location="right", text_closed="\uf100", text_open="\uf101", - padding=15, + padding=4, widgets=[ widget.Mpris2( name="spotifyd", @@ -497,10 +500,6 @@ screens = [ ), ], ), - widget.Spacer( - background=nord["nord0"], - length=4, - ), widget.WidgetBox( name="widget_box_1", background=nord["nord0"], @@ -509,7 +508,7 @@ screens = [ close_button_location="right", text_closed="\uf100", text_open="\uf101", - padding=15, + padding=4, widgets=[ widget.Pomodoro( background=nord["nord0"], @@ -568,7 +567,7 @@ screens = [ close_button_location="right", text_closed="\uf100", text_open="\uf101", - padding=15, + padding=4, widgets=[ widget.QuickExit( background=nord["nord11"], foreground=nord["nord0"], fontsize=24, default_text="\uf1e2" diff --git a/.vimrc b/.vimrc index 9d15ad0..6a19822 100644 --- a/.vimrc +++ b/.vimrc @@ -28,6 +28,7 @@ Plug 'xuhdev/vim-latex-live-preview' Plug 'rust-lang/rust.vim' Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } Plug 'takac/vim-hardtime' +Plug 'neoclide/coc.nvim', {'branch': 'release'} call plug#end() colorscheme nord