mirror of
https://github.com/zedsalim/debian-z.git
synced 2025-12-06 03:19:28 +00:00
19 lines
428 B
Bash
Executable file
19 lines
428 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo su
|
|
|
|
mkdir -p ~/.local/share/file-manager/actions/
|
|
touch ~/.local/share/file-manager/actions/terminal.desktop
|
|
echo "[Desktop Entry]
|
|
Type=Action
|
|
Tooltip=Open Terminal
|
|
Name=Open Terminal
|
|
Profiles=profile-one;
|
|
Icon=utilities-terminal
|
|
|
|
[X-Action-Profile profile-one]
|
|
MimeTypes=inode/directory;
|
|
Exec=alacritty --working-directory %f
|
|
Name=Default profile" > ~/.local/share/file-manager/actions/terminal.desktop
|
|
|
|
exit
|