This commit is contained in:
Roland Thomas Jr 2023-10-17 13:13:08 -04:00
parent bf1bb637fa
commit c46558cbb2
Signed by: roland
GPG Key ID: 7C3C2B085A4C2872
5 changed files with 16 additions and 10 deletions

View File

@ -42,5 +42,6 @@ if status --is-login
end end
end end
pyenv init - | source
starship init fish | source starship init fish | source

View File

@ -6,6 +6,6 @@ drawColor=#bf616a
drawFontSize=16 drawFontSize=16
drawThickness=10 drawThickness=10
saveAsFileExtension=png saveAsFileExtension=png
savePath=/home/roland/Pictures/screenshots savePath=/home/roland/Pictures
uiColor=#5e81ac uiColor=#5e81ac
userColors=picker, #2E3440, #4C566A, #D8DEE9, #81A1C1, #BF616A, #D08770, #EBCB8B, #A3BE8C, #B48EAD userColors=picker, #2E3440, #4C566A, #D8DEE9, #81A1C1, #BF616A, #D08770, #EBCB8B, #A3BE8C, #B48EAD

View File

@ -69,6 +69,7 @@ intel-ucode
irssi irssi
jc jc
jdk-openjdk jdk-openjdk
john
jq jq
kitty kitty
lesspipe lesspipe
@ -82,6 +83,7 @@ libisoburn
libreoffice-fresh libreoffice-fresh
libselinux libselinux
libsepol libsepol
libvirt
linux linux
linux-firmware linux-firmware
linux-lts linux-lts
@ -138,6 +140,8 @@ pulseaudio
pulseaudio-alsa pulseaudio-alsa
pulseaudio-jack pulseaudio-jack
pulseaudio-module-xrdp pulseaudio-module-xrdp
pycharm-community-edition
pyenv
python-aiohttp python-aiohttp
python-aiosmtpd python-aiosmtpd
python-black python-black
@ -196,6 +200,7 @@ texlive-music
texlive-pictures texlive-pictures
texlive-pstricks texlive-pstricks
texlive-publishers texlive-publishers
tk
tmux tmux
toilet toilet
tokei tokei

View File

@ -104,13 +104,16 @@ def get_wallpaper(screen_number):
try: try:
size = screens_.stdout.split()[screen_number] size = screens_.stdout.split()[screen_number]
except IndexError: except IndexError:
try:
size = screens_.stdout.split()[0] size = screens_.stdout.split()[0]
except IndexError:
size = "1920x1080"
except AttributeError: except AttributeError:
size = screens_ size = screens_
match size: match size:
case "3440x1440": case "3440x1440":
wallpaper = f"{wallpaper_dir}p3_3440x1440.png" wallpaper = f"{wallpaper_dir}p6_3440x1440.png"
case "1920x1080": case "1920x1080":
wallpaper = f"{wallpaper_dir}p3_1920x1080.png" wallpaper = f"{wallpaper_dir}p3_1920x1080.png"
case "3840x1080": case "3840x1080":
@ -472,7 +475,7 @@ screens = [
close_button_location="right", close_button_location="right",
text_closed="\uf100", text_closed="\uf100",
text_open="\uf101", text_open="\uf101",
padding=15, padding=4,
widgets=[ widgets=[
widget.Mpris2( widget.Mpris2(
name="spotifyd", name="spotifyd",
@ -497,10 +500,6 @@ screens = [
), ),
], ],
), ),
widget.Spacer(
background=nord["nord0"],
length=4,
),
widget.WidgetBox( widget.WidgetBox(
name="widget_box_1", name="widget_box_1",
background=nord["nord0"], background=nord["nord0"],
@ -509,7 +508,7 @@ screens = [
close_button_location="right", close_button_location="right",
text_closed="\uf100", text_closed="\uf100",
text_open="\uf101", text_open="\uf101",
padding=15, padding=4,
widgets=[ widgets=[
widget.Pomodoro( widget.Pomodoro(
background=nord["nord0"], background=nord["nord0"],
@ -568,7 +567,7 @@ screens = [
close_button_location="right", close_button_location="right",
text_closed="\uf100", text_closed="\uf100",
text_open="\uf101", text_open="\uf101",
padding=15, padding=4,
widgets=[ widgets=[
widget.QuickExit( widget.QuickExit(
background=nord["nord11"], foreground=nord["nord0"], fontsize=24, default_text="\uf1e2" background=nord["nord11"], foreground=nord["nord0"], fontsize=24, default_text="\uf1e2"

1
.vimrc
View File

@ -28,6 +28,7 @@ Plug 'xuhdev/vim-latex-live-preview'
Plug 'rust-lang/rust.vim' Plug 'rust-lang/rust.vim'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
Plug 'takac/vim-hardtime' Plug 'takac/vim-hardtime'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end() call plug#end()
colorscheme nord colorscheme nord