config/qtile: open files in editor via terminal

This commit is contained in:
Infinidoge 2025-04-15 16:43:23 -04:00
parent 0fcf7d1e9d
commit 0295ac0b95
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A

View file

@ -90,7 +90,7 @@ class Apps:
"""
Opens a file in the editor, with the given arguments
"""
return lazy.spawn(f"{cls.EDITOR} {' '.join(args)} {file_}")
return cls.open_in_terminal(f"{cls.EDITOR} {' '.join(args)} {file_}")
class Keys: