Hi there!
I just installed manjaro with awesome window manager and I'm trying to tweak a little bit more its default behavior. Concretely I'm willing to change the default terminal emulator to tilix, reading my .config/awesome/rc.lua I can see:
terminal = os.getenv("TERMINAL") or "lxterminal"
So I added
export TERMINAL="/usr/bin/tilix"
to my .zshrc, also modified rc.lua to:
terminal = os.getenv("TERMINAL") or "tilix"
with no luck, can anyone point me to the right direction?
Thanks in advance!