Added Inkscape to rofi menu

This commit is contained in:
2025-12-28 18:14:50 -08:00
parent 334031dc70
commit 21f6d55c0b

View File

@@ -52,7 +52,7 @@ sub select_option {
# ----------- # -----------
sub show_apps { sub show_apps {
my ($app) = @_; my ($app) = @_;
my @apps = qw(Gimp VSCode Antigravity Chrome); my @apps = qw(Gimp Inkscape VSCode Antigravity Chrome);
print join ("\n", map { "Apps:$_" } @apps); print join ("\n", map { "Apps:$_" } @apps);
} }
@@ -79,6 +79,8 @@ sub app_launch {
if ($sub_app eq "Gimp") { if ($sub_app eq "Gimp") {
launch_program($app, '/usr/bin/gimp'); launch_program($app, '/usr/bin/gimp');
} elsif ($sub_app eq "Inkscape") {
launch_program($app, 'inkscape', '--with-gui');
} elsif ($sub_app eq "Antigravity") { } elsif ($sub_app eq "Antigravity") {
launch_program($app, '~/bin/dwl_antigravity'); launch_program($app, '~/bin/dwl_antigravity');
} elsif ($sub_app eq "VSCode") { } elsif ($sub_app eq "VSCode") {