mirror of
https://github.com/ForeverPyrite/dotfiles.git
synced 2025-12-10 01:08:06 +00:00
I still need to figure out what to do with the .uuid font files (I sucked with the gitignore ig) and btop since it saves state everytime you toggle something, which is a little annoying. I'm debating if it should even be here at all. I think all I used it for originally was the theme lol.
21 lines
836 B
Plaintext
21 lines
836 B
Plaintext
Config(
|
|
// Also show the Desktop Actions defined in the desktop files, e.g. "New Window" from LibreWolf
|
|
desktop_actions: true,
|
|
|
|
max_entries: 5,
|
|
|
|
// A command to preprocess the command from the desktop file. The commands should take arguments in this order:
|
|
// command_name <term|no-term> <command>
|
|
// preprocess_exec_script: Some("/home/user/.local/share/anyrun/preprocess_application_command.sh")
|
|
|
|
// The terminal used for running terminal based desktop entries, if left as `None` a static list of terminals is used
|
|
// to determine what terminal to use.
|
|
terminal: Some(Terminal(
|
|
// The main terminal command
|
|
command: "alacritty",
|
|
// What arguments should be passed to the terminal process to run the command correctly
|
|
// {} is replaced with the command in the desktop entry
|
|
args: "-e {}",
|
|
)),
|
|
)
|