Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
File /
[ HOME SHELL ]
Name
Size
Permission
Action
MimeInfo
[ DIR ]
drwxr-xr-x
BaseDir.pm
8.71
KB
-rw-r--r--
DesktopEntry.pm
23.66
KB
-rw-r--r--
IconTheme.pm
1.72
KB
-rw-r--r--
Listing.pm
13.57
KB
-rw-r--r--
MimeInfo.pm
16.34
KB
-rw-r--r--
UserDirs.pm
4.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IconTheme.pm
package File::IconTheme; use strict; use warnings; use File::BaseDir qw(data_dirs); use File::Spec; use Exporter 5.57 qw( import ); # ABSTRACT: Find icon directories our $VERSION = '0.09'; # VERSION our @EXPORT_OK = qw(xdg_icon_theme_search_dirs); sub xdg_icon_theme_search_dirs { return grep {-d $_ && -r $_} File::Spec->catfile(File::BaseDir->_home, '.icons'), data_dirs('icons'), '/usr/share/pixmaps'; } 1; __END__ =pod =encoding UTF-8 =head1 NAME File::IconTheme - Find icon directories =head1 VERSION version 0.09 =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 FUNCTIONS Can be exported on request. =head2 xdg_icon_theme_search_dirs my @dirs = xdg_icon_theme_search_dir; Returns a list of the base directories of icon themes. =head1 CONFIGURATION AND ENVIRONMENT C<$XDG_DATA_HOME>, C<$XDG_DATA_DIRS> =head1 SEE ALSO L<http://standards.freedesktop.org/icon-theme-spec/> =head1 AUTHORS =over 4 =item * Jaap Karssenberg || Pardus [Larus] <pardus@cpan.org> =item * Graham Ollis <plicease@cpan.org> =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2003-2021 by Jaap Karssenberg || Pardus [Larus] <pardus@cpan.org>. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut
Close