#!/usr/bin/perl -w use strict; use IO::Handle; die "Usage: $0 identifier\n" . "(identifier is for example org.libreoffice)" unless $#ARGV == 0; my $id = $ARGV[0]; open (LOGCAT, "adb logcat |") || die "Could not open pipe from adb logcat"; my $pid = ''; while () { if (m!^I/ActivityManager\( *\d+\): Start proc $id for activity .*: pid=(\d+)!) { $pid = $1; } elsif (m!^[EIWD]/[^(]+\( *$pid\)!) { print $_; STDOUT->flush(); } } an='2'>cgit logo index : lo/core
LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/icon-themes/sukapura_svg/svtools
AgeCommit message (Expand)Author
2020-03-11Sukapura: Add shadow to icons, add many more icons:rizmut
2020-02-26Removed executable permission on SVG fileAndrea Gelmini
2020-02-26Resolves tdf#130500 - Sukapura icon themeHeiko Tietze