Updates
This commit is contained in:
parent
bf1bb637fa
commit
c46558cbb2
|
@ -42,5 +42,6 @@ if status --is-login
|
|||
end
|
||||
end
|
||||
|
||||
pyenv init - | source
|
||||
starship init fish | source
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -104,13 +104,16 @@ def get_wallpaper(screen_number):
|
|||
try:
|
||||
size = screens_.stdout.split()[screen_number]
|
||||
except IndexError:
|
||||
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"
|
||||
|
|
Loading…
Reference in New Issue