Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.230.97
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
File /
[ HOME SHELL ]
Name
Size
Permission
Action
MimeInfo
[ DIR ]
drwxr-xr-x
BaseDir.pm
8.04
KB
-rw-r--r--
DesktopEntry.pm
23.62
KB
-rw-r--r--
IconTheme.pm
1.32
KB
-rw-r--r--
Listing.pm
10.38
KB
-rw-r--r--
MimeInfo.pm
14.54
KB
-rw-r--r--
UserDirs.pm
3.63
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IconTheme.pm
package File::IconTheme; use strict; use warnings FATAL => 'all'; use File::BaseDir qw(data_dirs); require File::Spec; use parent qw(Exporter); our $VERSION = '0.08'; our @EXPORT_OK = qw(xdg_icon_theme_search_dirs); sub xdg_icon_theme_search_dirs { return grep {-d $_ && -r $_} File::Spec->catfile($ENV{HOME}, '.icons'), data_dirs('icons'), '/usr/share/pixmaps'; } 1; __END__ =head1 NAME File::IconTheme - find icon directories =head1 VERSION This document describes File::IconTheme. =head1 SYNOPSIS use File::IconTheme qw(xdg_icon_theme_search_dirs); print join "\n", xdg_icon_theme_search_dirs; =head1 DESCRIPTION This module can be used to find directories as specified by the Freedesktop.org Icon Theme Specification. Currently only a tiny (but most useful) part of the specification is implemented. In case you want to B<store> an icon theme, use the directory returned by: use File::BaseDir qw(data_dirs); print scalar data_dirs('icons'); =head1 INTERFACE =over =item C<xdg_icon_theme_search_dirs> Returns a list of the base directories of icon themes. =back =head1 EXPORTS None by default, but the method can be exported on demand. =head1 CONFIGURATION AND ENVIRONMENT C<$XDG_DATA_HOME>, C<$XDG_DATA_DIRS> =head1 SEE ALSO L<http://standards.freedesktop.org/icon-theme-spec/>
Close