Add panel

This commit is contained in:
Ratmir Karabut
2025-05-09 14:52:50 +03:00
parent 859b00f7be
commit 1e955e149c
11 changed files with 250 additions and 0 deletions
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<name>Длинный URL</name>
<regex>http://[^\s]{120,}</regex>
<group>0</group>
<commands>
<command>
<name>Сократить URL</name>
<exec>exo-open http://tinyurl.com/create.php?url=\0</exec>
</command>
</commands>
</action>
<action>
<name>Изображение</name>
<regex>(http|ftp).+\.(jpg|png|gif)</regex>
<group>0</group>
<commands>
<command>
<name>Просмотр в Ristretto</name>
<exec>ristretto &quot;\0&quot;</exec>
</command>
<command>
<name>Редактировать в Gimp</name>
<exec>gimp &quot;\0&quot;</exec>
</command>
</commands>
</action>
<action>
<name>Ошибки</name>
<regex>bug\s*#?\s*([0-9]+)</regex>
<group>0</group>
<commands>
<command>
<name>Ошибка в GNOME</name>
<exec>exo-open http://bugzilla.gnome.org/show_bug.cgi?id=\1</exec>
</command>
<command>
<name>Ошибка в Xfce</name>
<exec>exo-open http://bugzilla.xfce.org/show_bug.cgi?id=\1</exec>
</command>
</commands>
</action>
</actions>