Compare commits

...

2 commits

Author SHA1 Message Date
askiiart
7fc3e5011a
merge updates 2025-02-28 18:31:14 -06:00
askiiart
e31d659651
format, automatically start sway on tty1 2025-02-28 18:29:45 -06:00

View file

@ -62,6 +62,9 @@ alias venv="if ! test -d ./.venv/; python3 -m venv .venv; end; source ./.venv/bi
alias py-dep="pip install -r requirements.txt" alias py-dep="pip install -r requirements.txt"
alias sway="sway --unsupported-gpu" alias sway="sway --unsupported-gpu"
if [ $(tty) = /dev/tty1 ]
sway
end
# run code in wayland natively # run code in wayland natively
# TODO: just add it to the args file instead # TODO: just add it to the args file instead