This commit is contained in:
Roland Thomas Jr 2024-01-24 21:19:22 -05:00
parent c46558cbb2
commit 79a52ab8cf
Signed by: roland
GPG Key ID: 7C3C2B085A4C2872
3 changed files with 20 additions and 7 deletions

View File

@ -14,6 +14,7 @@ set --export XSECURELOCK_AUTH_FOREGROUND_COLOR "#D8DEE9"
set --export XSECURELOCK_AUTH_SOUNDS 1 set --export XSECURELOCK_AUTH_SOUNDS 1
set --export XSECURELOCK_DIM_COLOR "#2E3440" set --export XSECURELOCK_DIM_COLOR "#2E3440"
set --export XSECURELOCK_NO_COMPOSITE 1 set --export XSECURELOCK_NO_COMPOSITE 1
set --export XSECURELOCK_DIM_TIME_MS 10000
# bun # bun
set --export BUN_INSTALL "$HOME/.bun" set --export BUN_INSTALL "$HOME/.bun"

View File

@ -2,6 +2,7 @@ alacritty
alsa-utils alsa-utils
anki anki
ansible ansible
antiword
arc-gtk-theme arc-gtk-theme
asciidoctor asciidoctor
autoconf autoconf
@ -42,6 +43,7 @@ eza
fail2ban fail2ban
fakeroot fakeroot
fd fd
feh
figlet figlet
filezilla filezilla
firefox firefox
@ -107,6 +109,7 @@ nasm
nemo nemo
neofetch neofetch
neovim neovim
nfs-utils
nim nim
nmap nmap
noto-fonts noto-fonts
@ -132,6 +135,8 @@ pastel
patch patch
pavucontrol pavucontrol
pcsc-tools pcsc-tools
perl-archive-zip
perl-image-exiftool
pfetch pfetch
picom-animations-git picom-animations-git
pkgconf pkgconf
@ -145,21 +150,23 @@ pyenv
python-aiohttp python-aiohttp
python-aiosmtpd python-aiosmtpd
python-black python-black
python-cairocffi
python-dbus-next python-dbus-next
python-heatclient python-heatclient
python-ipykernel python-ipykernel
python-mako python-mako
python-openstackclient python-openstackclient
python-pdftotext
python-pip python-pip
python-pycodestyle python-pycodestyle
python-pylint python-pylint
python-pynvim python-pynvim
python-requests python-requests
python-ruff python-ruff
python-xcffib
qalculate-qt qalculate-qt
qemu-full qemu-full
qt5-styleplugins qt5-styleplugins
qt6gtk2
qtile qtile
qutebrowser qutebrowser
ranger ranger
@ -208,6 +215,7 @@ ts-node
ttf-font-awesome ttf-font-awesome
ttf-nerd-fonts-symbols ttf-nerd-fonts-symbols
typos typos
ugrep
unzip unzip
vagrant vagrant
valgrind valgrind
@ -226,6 +234,10 @@ xclip
xdotool xdotool
xf86-video-vesa xf86-video-vesa
xh xh
xmobar
xmonad
xmonad-contrib
xmonad-utils
xorg-bdftopcf xorg-bdftopcf
xorg-docs xorg-docs
xorg-font-util xorg-font-util

View File

@ -27,7 +27,7 @@ from keys import OPENWEATHER_APP_KEY, OPENWEATHER_CITI_ID
mod = "mod4" mod = "mod4"
terminal = "alacritty" terminal = "alacritty"
opaque_config = "--config-file /home/roland/.config/alacritty/alacritty-opaque.yml" opaque_config = "--config-file /home/roland/.config/alacritty/alacritty-opaque.toml"
terminal_opaque = f"alacritty {opaque_config}" terminal_opaque = f"alacritty {opaque_config}"
qtile_config = f"alacritty {opaque_config} -e nvim /home/roland/.config/qtile/config.py" qtile_config = f"alacritty {opaque_config} -e nvim /home/roland/.config/qtile/config.py"
ipython = f"alacritty {opaque_config} -e ipython" ipython = f"alacritty {opaque_config} -e ipython"
@ -642,7 +642,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=0,
widgets=[ widgets=[
widget.Mpris2( widget.Mpris2(
name="spotifyd", name="spotifyd",
@ -676,7 +676,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=0,
widgets=[ widgets=[
widget.OpenWeather( widget.OpenWeather(
background=nord["nord15"], background=nord["nord15"],
@ -723,7 +723,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"
@ -939,8 +939,8 @@ wl_input_rules = None
# #
# We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in # We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in
# java that happens to be on java's whitelist. # java that happens to be on java's whitelist.
# wmname = "LG3D" wmname = "LG3D"
wmname = f"qtile {VERSION}" # wmname = f"qtile {VERSION}"
def write_hot_keys(): def write_hot_keys():