| Server IP : 13.126.101.145 / Your IP : 216.73.216.131 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ip-11-115-0-196 6.8.0-1039-aws #41~22.04.1-Ubuntu SMP Thu Sep 11 10:54:48 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.17 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /bin/ |
Upload File : |
#! /usr/bin/perl -w
my $login=0;
while ($opt = shift(@ARGV))
{
if ($opt eq '-display')
{
$ENV{'DISPLAY'} = shift(@ARGV);
}
elsif ($opt eq '-name')
{
# Accept but ignore
print STDERR "$0: The -name flag is not supported by the Tilix wrapper.\n"
}
elsif ($opt eq '-n')
{
# Accept but ignore
print STDERR "$0: to set an icon, please use -name <profile> and set a profile icon\n"
}
elsif ($opt eq '-T' || $opt eq '-title')
{
push(@args, '-t', shift(@ARGV));
}
elsif ($opt eq '-ls')
{
$login = 1;
}
elsif ($opt eq '+ls')
{
$login = 0;
}
elsif ($opt eq '-geometry')
{
$arg = shift(@ARGV);
push(@args, "--geometry=$arg");
}
elsif ($opt eq '-fn')
{
# Accept but ignore
print STDERR "$0: The -fn flag is not supported by the Tilix wrapper.\n"
}
elsif ($opt eq '-fg')
{
# Accept but ignore
print STDERR "$0: The -fg flag is not supported by the Tilix wrapper.\n"
}
elsif ($opt eq '-bg')
{
# Accept but ignore
print STDERR "$0: The -bg flag is not supported by the Tilix wrapper.\n"
}
elsif ($opt eq '-tn')
{
# Accept but ignore
print STDERR "$0: The -tn flag (set terminal name) is not supported by the Tilix wrapper.\n"
}
elsif ($opt eq '-e')
{
$arg = shift(@ARGV);
if (@ARGV)
{
push(@args, '-x', $arg, @ARGV);
last;
}
else
{
push(@args, '-e', $arg);
}
last;
}
elsif ($opt eq '-h' || $opt eq '--help')
{
push(@args, '--help');
}
}
if ($login == 1)
{
# Accept but ignore
print STDERR "$0: Running a login shell is not supported by the Tilix wrapper.\n"
}
exec('tilix', @args);