Updates
This commit is contained in:
parent
c46558cbb2
commit
79a52ab8cf
|
@ -14,6 +14,7 @@ set --export XSECURELOCK_AUTH_FOREGROUND_COLOR "#D8DEE9"
|
|||
set --export XSECURELOCK_AUTH_SOUNDS 1
|
||||
set --export XSECURELOCK_DIM_COLOR "#2E3440"
|
||||
set --export XSECURELOCK_NO_COMPOSITE 1
|
||||
set --export XSECURELOCK_DIM_TIME_MS 10000
|
||||
# bun
|
||||
set --export BUN_INSTALL "$HOME/.bun"
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ alacritty
|
|||
alsa-utils
|
||||
anki
|
||||
ansible
|
||||
antiword
|
||||
arc-gtk-theme
|
||||
asciidoctor
|
||||
autoconf
|
||||
|
@ -42,6 +43,7 @@ eza
|
|||
fail2ban
|
||||
fakeroot
|
||||
fd
|
||||
feh
|
||||
figlet
|
||||
filezilla
|
||||
firefox
|
||||
|
@ -107,6 +109,7 @@ nasm
|
|||
nemo
|
||||
neofetch
|
||||
neovim
|
||||
nfs-utils
|
||||
nim
|
||||
nmap
|
||||
noto-fonts
|
||||
|
@ -132,6 +135,8 @@ pastel
|
|||
patch
|
||||
pavucontrol
|
||||
pcsc-tools
|
||||
perl-archive-zip
|
||||
perl-image-exiftool
|
||||
pfetch
|
||||
picom-animations-git
|
||||
pkgconf
|
||||
|
@ -145,21 +150,23 @@ pyenv
|
|||
python-aiohttp
|
||||
python-aiosmtpd
|
||||
python-black
|
||||
python-cairocffi
|
||||
python-dbus-next
|
||||
python-heatclient
|
||||
python-ipykernel
|
||||
python-mako
|
||||
python-openstackclient
|
||||
python-pdftotext
|
||||
python-pip
|
||||
python-pycodestyle
|
||||
python-pylint
|
||||
python-pynvim
|
||||
python-requests
|
||||
python-ruff
|
||||
python-xcffib
|
||||
qalculate-qt
|
||||
qemu-full
|
||||
qt5-styleplugins
|
||||
qt6gtk2
|
||||
qtile
|
||||
qutebrowser
|
||||
ranger
|
||||
|
@ -208,6 +215,7 @@ ts-node
|
|||
ttf-font-awesome
|
||||
ttf-nerd-fonts-symbols
|
||||
typos
|
||||
ugrep
|
||||
unzip
|
||||
vagrant
|
||||
valgrind
|
||||
|
@ -226,6 +234,10 @@ xclip
|
|||
xdotool
|
||||
xf86-video-vesa
|
||||
xh
|
||||
xmobar
|
||||
xmonad
|
||||
xmonad-contrib
|
||||
xmonad-utils
|
||||
xorg-bdftopcf
|
||||
xorg-docs
|
||||
xorg-font-util
|
||||
|
|
|
@ -27,7 +27,7 @@ from keys import OPENWEATHER_APP_KEY, OPENWEATHER_CITI_ID
|
|||
|
||||
mod = "mod4"
|
||||
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}"
|
||||
qtile_config = f"alacritty {opaque_config} -e nvim /home/roland/.config/qtile/config.py"
|
||||
ipython = f"alacritty {opaque_config} -e ipython"
|
||||
|
@ -642,7 +642,7 @@ screens = [
|
|||
close_button_location="right",
|
||||
text_closed="\uf100",
|
||||
text_open="\uf101",
|
||||
padding=15,
|
||||
padding=0,
|
||||
widgets=[
|
||||
widget.Mpris2(
|
||||
name="spotifyd",
|
||||
|
@ -676,7 +676,7 @@ screens = [
|
|||
close_button_location="right",
|
||||
text_closed="\uf100",
|
||||
text_open="\uf101",
|
||||
padding=15,
|
||||
padding=0,
|
||||
widgets=[
|
||||
widget.OpenWeather(
|
||||
background=nord["nord15"],
|
||||
|
@ -723,7 +723,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"
|
||||
|
@ -939,8 +939,8 @@ wl_input_rules = None
|
|||
#
|
||||
# We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in
|
||||
# java that happens to be on java's whitelist.
|
||||
# wmname = "LG3D"
|
||||
wmname = f"qtile {VERSION}"
|
||||
wmname = "LG3D"
|
||||
# wmname = f"qtile {VERSION}"
|
||||
|
||||
|
||||
def write_hot_keys():
|
||||
|
|
Loading…
Reference in New Issue