mirror of
https://github.com/aljazceru/omakub.git
synced 2025-12-17 04:24:20 +01:00
Requires making the sub configs explicit so we can run alacritty migrate to upgrade them after v15.
13 lines
327 B
Bash
13 lines
327 B
Bash
cat <<EOF >~/.local/share/applications/Neovim.desktop
|
|
[Desktop Entry]
|
|
Version=1.0
|
|
Name=Neovim
|
|
Comment=Edit text files
|
|
Exec=alacritty --config-file /home/$USER/.config/alacritty/pane.toml --class=Neovim --title=Neovim -e nvim %F
|
|
Terminal=false
|
|
Type=Application
|
|
Icon=nvim
|
|
Categories=Utilities;TextEditor;
|
|
StartupNotify=false
|
|
EOF
|