Result:
found more than 380 distributions - search limited to the first 2001 files matching your query ( run in 2.488 )


App-clipbored

 view release on metacpan or  search on metacpan

bin/clipbored  view on Meta::CPAN

The helper scripts can read properties from environment variables.
These are recognized:

  CLIPBORED_DMENU_LISTMODE    regular/vertical
  CLIPBORED_DMENU_NORMAL_FG   foreground color in HEX
  CLIPBORED_DMENU_NORMAL_BG   background color in HEX
  CLIPBORED_DMENU_SELECT_FG   selected item background color in HEX
  CLIPBORED_DMENU_SELECT_BG   selected item foreground color in HEX
  CLIPBORED_DMENU_FONT        font that will be used
  CLIPBORED_DMENU_LINES       how many lines that will be shown in vertical mode
  CLIPBORED_X_SELECTION       X buffer to use: primary, secondary, clipboard

 view all matches for this distribution


App-cloc

 view release on metacpan or  search on metacpan

bin/cloc  view on Meta::CPAN

'
<style TYPE="text/css">
<!--
    body {
        color: black;
        background-color: white;
        font-family: monospace
    }

    .whitespace {
        background-color: gray;
    }

    .comment {
        color: gray;
        font-style: italic;

bin/cloc  view on Meta::CPAN

        }
        td, th {
          padding: 4px;
        }
        th {
          background-color: #CCCCCC;
        }
        td {
          text-align: center;
        }
        table, td, tr, th {

bin/cloc  view on Meta::CPAN

        }
        td, th {
          padding: 4px;
        }
        th {
          background-color: #CCCCCC;
        }
        td {
          text-align: center;
        }
        table, td, tr, th {

 view all matches for this distribution


App-colorxform

 view release on metacpan or  search on metacpan

lib/App/colorxform.pm  view on Meta::CPAN

    v => 1.1,
    summary => 'Transform colors on the CLI',
    description => <<'_',

Some CLI programs output horrible colors (e.g. hard to read on terminal with
black background) and the colors are either uncustomizable or cumbersome to
customize. This is where `colorxform` comes in. You pipe the output and it will
replace some colors with another, per your specification.

An example, put this in your `~/.config/colorxform.conf`:

lib/App/colorxform.pm  view on Meta::CPAN

        bg_transforms => {
            schema => 'hash*',
            default => {},
            description => <<'_',

List of background colors to replace with other colors. You can specify color
using RGB code (e.g. `#123456`) or color names like those recognized by
<pm:Term::ANSIColor> (e.g. `blue` or `bold blue`).

_
        },

lib/App/colorxform.pm  view on Meta::CPAN

        my $code;
        {
            $code = _color_name_to_bg_code($k);
            last if defined $code;
            # XXX support transforming 8-bit and 24-bit input colors
            die "Unrecognized background color name/code '$k'";
        }
        my $xformcode;
        {
            my $v = $args{bg_transforms}{$k};
            $xformcode = _color_name_to_bg_code($v);

lib/App/colorxform.pm  view on Meta::CPAN

            if ($v =~ /\A#([0-9A-Fa-f]{2})([0-9A-Fa-f]{2})([0-9A-Fa-f]{2})\z/) {
                $xformcode = sprintf "48;2;%d;%d;%d",
                    hex($1), hex($2), hex($3);
                last;
            }
            die "Unrecognized background transform color name/code '$v'";
        }
        $codemaps{$code} = $xformcode;
    }

    my $transform = sub {

lib/App/colorxform.pm  view on Meta::CPAN

 colorxform(%args) -> [status, msg, result, meta]

Transform colors on the CLI.

Some CLI programs output horrible colors (e.g. hard to read on terminal with
black background) and the colors are either uncustomizable or cumbersome to
customize. This is where C<colorxform> comes in. You pipe the output and it will
replace some colors with another, per your specification.

An example, put this in your C<~/.config/colorxform.conf>:

lib/App/colorxform.pm  view on Meta::CPAN


=over 4

=item * B<bg_transforms> => I<hash> (default: {})

List of background colors to replace with other colors. You can specify color
using RGB code (e.g. C<#123456>) or color names like those recognized by
L<Term::ANSIColor> (e.g. C<blue> or C<bold blue>).

=item * B<fg_transforms> => I<hash> (default: {})

 view all matches for this distribution


App-combinesheets

 view release on metacpan or  search on metacpan

docs/App-combinesheets.html  view on Meta::CPAN

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >

<style type="text/css">
 <!--/*--><![CDATA[/*><!--*/
BODY {
  background: white;
  color: black;
  font-family: arial,sans-serif;
  margin: 0;
  padding: 1ex;
}

A:link, A:visited {
  background: transparent;
  color: #006699;
}

A[href="#POD_ERRORS"] {
  background: transparent;
  color: #FF0000;
}

DIV {
  border-width: 0;

docs/App-combinesheets.html  view on Meta::CPAN

}

.pod { margin-right: 20ex; }

.pod PRE     {
  background: #eeeeee;
  border: 1px solid #888888;
  color: black;
  padding: 1em;
  white-space: pre;
}

.pod H1      {
  background: transparent;
  color: #006699;
  font-size: large;
}

.pod H1 A { text-decoration: none; }
.pod H2 A { text-decoration: none; }
.pod H3 A { text-decoration: none; }
.pod H4 A { text-decoration: none; }

.pod H2      {
  background: transparent;
  color: #006699;
  font-size: medium;
}

.pod H3      {
  background: transparent;
  color: #006699;
  font-size: medium;
  font-style: italic;
}

.pod H4      {
  background: transparent;
  color: #006699;
  font-size: medium;
  font-weight: normal;
}

 view all matches for this distribution


App-cpm

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

        [This is cpm v1]
        - cpm now prepares dependencies first and performs final installation separately.
        - By default, cpm installs the requested distributions and their runtime dependency closure.
        - Terminal progress output is now much better at showing what cpm is doing and which step is taking time.
        - cpm now requires Perl v5.24 or later.
        - For more background, see https://skaji.medium.com/cpm-v1-making-installs-stable-b2236b8eda44

v0.999.11  2026-04-26 09:27:03 CEST (TRIAL RELEASE)
        - Add final-install and top-level selection options;
          The default top-level phase selection is also changed
          from build,runtime,test to configure,build,runtime,test,develop (#291)

 view all matches for this distribution


App-devmode

 view release on metacpan or  search on metacpan

bin/devmode  view on Meta::CPAN

termcapinfo  xterm Z0=\E[?3h:Z1=\E[?3l:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l

# Make the output buffer large for (fast) xterms.
termcapinfo xterm* OL=10000

# tell screen that xterm can switch to dark background and has function
# keys.
termcapinfo xterm 'VR=\E[?5h:VN=\E[?5l'
termcapinfo xterm 'k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~'
termcapinfo xterm 'kh=\E[1~:kI=\E[2~:kD=\E[3~:kH=\E[4~:kP=\E[H:kN=\E[6~'

bin/devmode  view on Meta::CPAN


# emulate part of the 'K' charset
termcapinfo   xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334,{\344,|\366,}\374,~\337'

# xterm-52 tweaks:
# - uses background color for delete operations
termcapinfo xterm ut

################
#
# wyse terminals

bin/devmode  view on Meta::CPAN


# 256 colour stuff
# terminfo and termcap for nice 256 color terminal
# allow bold colors - necessary for some reason
attrcolor b ".I"
# tell screen how to set colors. AB = background, AF=foreground
termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
# erase background with current bg color
#defbce "on"


################
#

 view all matches for this distribution


App-docsisious

 view release on metacpan or  search on metacpan

lib/App/docsisious/public/icons/flaticon.html  view on Meta::CPAN

    .text ul li {
        margin-top:10px;
        list-style:none;
    }
    .num {
        background:#66A523;
        color:#fff;
        border-radius:20px;
        padding:1px;
        display:inline-block;
        width:22px;

lib/App/docsisious/public/icons/flaticon.html  view on Meta::CPAN

        display: inline-block;
        width: 120px;
        margin: 10px;
        text-align: center;
        vertical-align: top;
        background: #FFF;
    }
    .glyph .glyph-icon {
        padding: 10px;
        display: block;
        font-family:"Flaticon";

lib/App/docsisious/public/icons/flaticon.html  view on Meta::CPAN

		margin: 0px;
		width: 800px;
		height: 150px;
		border: 1px solid #CCC;
		resize: none;
		background: #EEE;
    }
    .author-link, .attrDiv a{
    	font-size: 12px;
    	color: #333;
    	text-decoration: none;

 view all matches for this distribution


App-dozo

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - add fallback to find getoptlong.sh from script location

0.9925 2025-12-17T00:56:17Z

    - rebrand to Dôzo with new stroke-based logo
    - update logo with semi-transparent background for dark mode
    - add INSTALLATION section to documentation
    - fix CPAN Testers failures on non-Linux platforms

0.9924 2025-12-15T12:27:06Z

 view all matches for this distribution


App-dropboxapi

 view release on metacpan or  search on metacpan

lib/App/dropboxapi.pm  view on Meta::CPAN

=head3 Example

    > dropbox-api find /product/google-tasks-checker-plus
    /product/chrome-extentions/google-tasks-checker-plus/README.md
    /product/chrome-extentions/google-tasks-checker-plus/src
    /product/chrome-extentions/google-tasks-checker-plus/src/background.html
    /product/chrome-extentions/google-tasks-checker-plus/src/external.png
    /product/chrome-extentions/google-tasks-checker-plus/src/icon-32.png
    /product/chrome-extentions/google-tasks-checker-plus/src/icon-128.png
    /product/chrome-extentions/google-tasks-checker-plus/src/icon.gif
    /product/chrome-extentions/google-tasks-checker-plus/src/jquery-1.4.2.min.js

lib/App/dropboxapi.pm  view on Meta::CPAN

=head3 sync to dropbox

dropbox-api sync <source_dir> dropbox:<target_dir> [options]

    > dropbox-api sync /tmp/product dropbox:/work/src
    upload background.html /work/src/background.html
    upload external.png /work/src/external.png
    upload icon-128.png /work/src/icon-128.png

=head3 delete option ( -d )

    > dropbox-api sync dropbox:/product/google-tasks-checker-plus/src /tmp/product -d
    download /private/tmp/product/external.png
    download /private/tmp/product/icon-32.png
    download /private/tmp/product/icon-128.png
    remove background.html.tmp

=head3 dry run option ( -n )

    > dropbox-api sync dropbox:/product/google-tasks-checker-plus/src /tmp/product -dn
    !! enable dry run !!
    download /private/tmp/product/external.png
    download /private/tmp/product/icon-32.png
    download /private/tmp/product/icon-128.png
    remove background.html.tmp

=head3 verbose option ( -v )

    > dropbox-api sync dropbox:/product/google-tasks-checker-plus/src /tmp/product -dnv
    remote_base: /product/chrome-extentions/google-tasks-checker-plus/src
    local_base: /private/tmp/product
    ** download **
    skip background.html
    download /private/tmp/product/external.png
    download /private/tmp/product/icon-32.png
    download /private/tmp/product/icon-128.png
    skip icon.gif
    skip jquery-1.4.2.min.js

lib/App/dropboxapi.pm  view on Meta::CPAN

    skip manifest.json
    skip options.html
    skip popup.html
    skip reset.css
    ** delete **
    skip background.html
    remove background.html.tmp
    skip icon.gif
    skip jquery-1.4.2.min.js
    skip main.js
    skip manifest.json
    skip options.html

 view all matches for this distribution


App-grepurl

 view release on metacpan or  search on metacpan

data/index.html  view on Meta::CPAN

	text-align:       justify;
	font-family:      sans-serif;
	line-height:      16pt;
	}
p.menu {
	background-color: yellow;
	padding:          5pt;
	border-width:     1pt;
	border-color:     black;
	border-style:     solid;
	text-align:       center;
	margin-left:      15%;
	margin-right:     15%;
	font-weight:      bold;
	}
p.alert {
	background-color: pink;
	padding:          5pt;
	border-width:     1pt;
	border-color:     black;
	border-style:     solid;
	margin-left:      10%;
	margin-right:     10%;
	}
font.rss {
	background-color: red;
	padding:          2pt;
	color:            white;
	padding-bottom:    0pt;
	font-size:        0.7em;
	font-weight:      bold;
	}
font.atom {
	background-color: orange;
	padding:          2pt;
	color:            white;
	padding-bottom:    0pt;
	font-size:        0.7em;
	font-weight:      bold;

 view all matches for this distribution


App-htidx

 view release on metacpan or  search on metacpan

lib/App/htidx.pm  view on Meta::CPAN

    margin: 0;
    padding: 0.25em 1em;
}

th {
    background-color: #e8e8e8;
}

tr:nth-child(even) {
    background-color: #f0f0f0;
}

tr:nth-child(odd) {
    background-color: #f8f8f8;
}

 view all matches for this distribution


App-jupiter

 view release on metacpan or  search on metacpan

share/default.css  view on Meta::CPAN

body {
    margin: 1em 2em;
    max-width: 68em;
    padding: 0;
    color: #222;
    background-color: #fff;
    quotes: "\201C" "\201E" "\2018" "\2019";
}

@media (prefers-color-scheme: dark) {
    body { color: #ddd; background-color: #000; }
    img { opacity: .75; transition: opacity .5s ease-in-out; }
    img:hover { opacity: 1; }
}

.invisible {

share/default.css  view on Meta::CPAN

    border-bottom: 1px dashed salmon;
}

#sidebar a.message:hover {
    cursor: help;
    background-color: #ffD0D0;
    color:#000;
    border: 1px dashed red !important;
    text-decoration: none !important;
}
#sidebar dl a {

share/default.css  view on Meta::CPAN

    padding: 2px 3px;
    border-radius: 3px;
    text-transform: uppercase;
}
.opml {
    background-color: orange;
}
.jupiter {
    background-color: salmon;
}

/* ----------------------------- Body ---------------------------- */

#body {

share/default.css  view on Meta::CPAN

	display: none;
    }
    /* show MEMBERS */
    #sidebar h2:first-of-type {
	display: block;
	background-color: #ddd;
	margin: 0.5em;
	cursor: pointer;
    }
    @media (prefers-color-scheme: dark) {
	#sidebar h2:first-of-type {
	    background-color:#222;
	}
    }
}

 view all matches for this distribution


App-karr

 view release on metacpan or  search on metacpan

bin/karr  view on Meta::CPAN

run, and then write changes back to Git refs. In normal use this means you can
interact with shared task state without checking a persistent F<karr/>
directory into the work tree.

The script is the best starting point when you want to understand the CLI as a
user. For architecture notes, Docker background, and Perl-facing examples, see
L<App::karr>.

=head1 CLI WORKFLOW

A typical session looks like this:

 view all matches for this distribution


App-lms

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - Add Node.js handler (--nd) using require.resolve with subpath support.
    - Add Ruby handler (--rb) using $LOADED_FEATURES inspection.

0.21 2026-02-02T01:19:05Z

    - Add --bat-theme option for automatic BAT_THEME selection based on terminal background

0.20 2026-02-01T11:28:13Z

    - Support Linuxbrew path resolution in Homebrew wrapper detection

 view all matches for this distribution


App-mdee

 view release on metacpan or  search on metacpan

lib/App/Greple/md.pm  view on Meta::CPAN

be folded with proper indentation.  Links become clickable via OSC 8
terminal hyperlinks in supported terminals.

Nested elements are handled with cumulative coloring: for example,
a link inside a heading retains both its link color and the heading
background color.

For a complete Markdown viewing experience with line folding,
multi-column output, and themes, see L<App::mdee>, which uses this
module as its highlighting engine.

 view all matches for this distribution


App-migrate

 view release on metacpan or  search on metacpan

lib/App/migrate.pm  view on Meta::CPAN

    # restore 0.1.0 from backup.
    upgrade     rm      useless.db
    RESTORE
    VERSION 0.2.0
    # To upgrade from 0.2.0 to 1.0.0 we need to run several commands,
    # and after downgrading we need to kill some background service.
    before_upgrade
      patch    <0.2.0.patch >/dev/null
      chmod +x some_daemon
    downgrade
      patch -R <0.2.0.patch >/dev/null

 view all matches for this distribution


App-mojopaste

 view release on metacpan or  search on metacpan

script/mojopaste  view on Meta::CPAN

    margin: 0;
    box-sizing: border-box;
  }

  html, body, textarea {
    background: var(--root-bg-color);
  }

  html, body, textarea, button {
    font-family: var(--root-font-family);
    font-size: var(--root-font-size);

script/mojopaste  view on Meta::CPAN

    color: var(--root-font-color);
  }

  a:hover,
  .btn:hover {
    background-color: #11120f;
  }

  nav {
    background: var(--nav-bg-color);
    position: sticky;
    top: 0;
    height: var(--nav-height);
    box-shadow: -1px 0 0 1px rgba(0, 0, 0, 0.2);
  }

  .btn,
  .brand {
    --padding: 0.4rem;

    background: var(--nav-bg-color);
    text-decoration: none;
    line-height: calc(var(--nav-height) - var(--padding) * 2);
    margin-left: calc(var(--gutter) / 2);
    padding: var(--padding) calc(var(--gutter) / 2);
    float: left;

script/mojopaste  view on Meta::CPAN


  /*! Color themes for Google Code Prettify | MIT License | github.com/jmblog/color-themes-for-google-code-prettify */
  .prettyprint{font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#c5c8c6}ol.linenums{margin-top:0;margin-bottom:0;color:#969896}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li...

  .morris-hover{position:absolute;z-index:1000}
  .morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(0,0,0,0.8);font-size:12px;text-align:center}
  .morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0}
  .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0}

  % end
  <script type="text/javascript">

 view all matches for this distribution


App-mookview

 view release on metacpan or  search on metacpan

assets/sass/screen.scss  view on Meta::CPAN

  padding-bottom:30px;
  border-bottom:1px solid #bbb;
  span {
    padding:10px 20px;
    @include border-radius(4px,4px);
    background-color:#eee;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #333;

assets/sass/screen.scss  view on Meta::CPAN

  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight:bold;
}

pre{
  background-color:#ddd;
  padding:10px;
  border:1px solid #999;
  overflow:auto;
  margin:20px 0;
  code {

assets/sass/screen.scss  view on Meta::CPAN

  font-size:12px;
  border: #333 1px solid;
  border-collapse: collapse;
  font-size: 11px;
  th {
    background-color: #666;
    border: #ccc 1px dotted;
    color:#fff;
    vertical-align: top;
    text-align: left;
    padding: 10px;
  }
  td { 
    background-color: #eee;
    border: #ccc 1px dotted;
    vertical-align: top;
    text-align: left;
    padding: 10px;
  }

 view all matches for this distribution


App-mycnfdiff

 view release on metacpan or  search on metacpan

t/samples/percona-compiled.txt  view on Meta::CPAN

                      Log connections and queries to given file
  --group-concat-max-len=# 
                      The maximum length of the result of function 
                      GROUP_CONCAT()
  --gtid-executed-compression-period[=#] 
                      When binlog is disabled, a background thread wakes up to
                      compress the gtid_executed table every
                      gtid_executed_compression_period transactions, as a
                      special case, if variable is 0, the thread never wakes up
                      to compress the gtid_executed table.
  --gtid-mode=name    Controls whether Global Transaction Identifiers (GTIDs)

t/samples/percona-compiled.txt  view on Meta::CPAN

                      neighbors from buffer pool), when flushing a block
  --innodb-flush-sync Allow IO bursts at the checkpoints ignoring io_capacity
                      setting.
                      (Defaults to on; use --skip-innodb-flush-sync to disable.)
  --innodb-flushing-avg-loops=# 
                      Number of iterations over which the background flushing
                      is averaged.
  --innodb-force-load-corrupted 
                      Force InnoDB to load metadata of corrupted table.
  --innodb-force-recovery=# 
                      Helps to save your data in case the disk image of the

t/samples/percona-compiled.txt  view on Meta::CPAN

                      Total memory allocated for InnoDB Fulltext Search cache
  --innodb-ft-user-stopword-table[=name] 
                      User supplied stopword table name, effective in the
                      session level.
  --innodb-io-capacity=# 
                      Number of IOPs the server can do. Tunes the background IO
                      rate
  --innodb-io-capacity-max=# 
                      Limit to which innodb_io_capacity can be inflated.
  --innodb-kill-idle-transaction=# 
                      A deprecated alias of kill_idle_transaction server

t/samples/percona-compiled.txt  view on Meta::CPAN

                      extent.
  --innodb-read-ahead-threshold=# 
                      Number of pages that must be accessed sequentially for
                      InnoDB to trigger a readahead.
  --innodb-read-io-threads=# 
                      Number of background read I/O threads in InnoDB.
  --innodb-read-only  Start InnoDB in read only mode (off by default)
  --innodb-replication-delay=# 
                      Replication thread delay (ms) on the slave server if
                      innodb_thread_concurrency is reached (0 by default)
  --innodb-rollback-on-timeout 

t/samples/percona-compiled.txt  view on Meta::CPAN

                      (Defaults to on; use --skip-innodb-use-global-flush-log-at-trx-commit to disable.)
  --innodb-use-native-aio 
                      Use native AIO if supported on this platform.
                      (Defaults to on; use --skip-innodb-use-native-aio to disable.)
  --innodb-write-io-threads=# 
                      Number of background write I/O threads in InnoDB.
  --interactive-timeout=# 
                      The number of seconds the server waits for activity on an
                      interactive connection before closing it
  --internal-tmp-disk-storage-engine[=name] 
                      The default storage engine for on-disk internal tmp table

 view all matches for this distribution


App-news

 view release on metacpan or  search on metacpan

script/news  view on Meta::CPAN

<head>
<title><%= title %></title>
%= stylesheet begin
body {
  color: #111;
  background-color: #fffff8;
  padding: 1ch;
  max-width: 80ch;
  font-size: 12pt;
  font-family: Lucida Console,Lucida Sans Typewriter,monaco,DejaVu Mono,Bitstream Vera Sans Mono,monospace;
  hyphens: auto;
}
@media (prefers-color-scheme: dark) {
  body {
    color: #7f7;
    background-color: #010;
  }
  a:link { color: #99f; }
  a:visited { color: #86f; }
  a:hover { color: #eef; }
}

 view all matches for this distribution


App-numero2bgc

 view release on metacpan or  search on metacpan

numero2bgc.pm  view on Meta::CPAN


=encoding utf8

=head1 NAME

App::numero2bgc - Put colors on the background of each number from input text.

=head1 SYNOPSIS

 numero2bgc

 view all matches for this distribution


App-optex

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - Make symbolic link to "perl" for "/usr/bin/env perl" to work.

v0.0.11 2018-01-23T11:31:19Z

    - Put error handling in t/02_config.t
    - Change STDERR background to WINE RED.

v0.0.10 2018-01-17T14:23:14Z

    - Implement "no-module" configuration.

 view all matches for this distribution


App-orgdaemon

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

The App-orgdaemon distribution provides the "org-daemon" program, a
Perl/Tk application which sits in the background and "warns" about
appointments found in configured Emacs org-mode files.

Installation:

	perl Makefile.PL

 view all matches for this distribution


App-papersway

 view release on metacpan or  search on metacpan

bin/papersway  view on Meta::CPAN


=over 4

=item B<--i3status>

Start a background instance of B<i3status>, filter and print its output.

=item B<--cols=>I<N>

Set the number of columns on a new workspace.  The default, and minimum, is 2.
Incompatible with I<--cols-min-width>.

 view all matches for this distribution


App-perlminlint

 view release on metacpan or  search on metacpan

elisp/perl-minlint.el  view on Meta::CPAN

(defun perl-minlint-set-mode-line-alert (err)
  (cond (err
         (setq perl-minlint-saved-color-cookie
               (mapc (lambda (f)
                         (face-remap-add-relative f
                                                  ':background "orange"))
                       perl-minlint-alert-face)))
        (t
         (when perl-minlint-saved-color-cookie
           (mapc (lambda (ck)
                     (face-remap-remove-relative ck))

 view all matches for this distribution


App-phoebe

 view release on metacpan or  search on metacpan

lib/App/Phoebe/Web.pm  view on Meta::CPAN

      my $stream = shift;
      old_serve_css_via_http($stream);
      $log->info("Adding more CSS via HTTP (for dark mode)");
      $stream->write(<<'EOT');
    @media (prefers-color-scheme: dark) {
       body { color: #eeeee8; background-color: #333333; }
       a:link { color: #1e90ff }
       a:hover { color: #63b8ff }
       a:visited { color: #7a67ee }
    }
    EOT

lib/App/Phoebe/Web.pm  view on Meta::CPAN

  $log->info("Serving CSS via HTTP");
  $stream->write("HTTP/1.1 200 OK\r\n");
  $stream->write("Content-Type: text/css\r\n");
  $stream->write("Cache-Control: public, max-age=86400, immutable\r\n"); # 24h
  $stream->write("\r\n");
  $stream->write("html { max-width: 70ch; padding: 2ch; margin: auto; color: #111; background: #ffe; }\n");
  $stream->write(".del { color: rgb(222,56,43); }\n"); # diff: deleted
  $stream->write(".ins { color: rgb(57,181,74); }\n"); # diff: inserted
}

sub serve_index_via_http {

lib/App/Phoebe/Web.pm  view on Meta::CPAN

    4 => "0,111,184",
    5 => "118,38,113",
    6 => "44,181,233",
    7 => "204,204,204");
  $code = join("", map {
    "<span style=\"color: rgb($rgb{$_}); background-color: rgb($rgb{$_})\">$_</span>";
	       } split //, $code);
  return $code;
}

sub serve_rss_via_http {

 view all matches for this distribution


App-pl

 view release on metacpan or  search on metacpan

pod/examples.pod  view on Meta::CPAN


I<What color is a mirror?  It depends whom you ask. ;-)>

You get numbers to fill into C<"\e[BGm">, C<"\e[FGm"> or C<"\e[BG;FGm"> to get
a color and close it with C<"\e[m">.  There are twice twice 8 different colors
for dim & bright and for background & foreground.  Hence the multiplication of
escape codes and of values to fill them.

This fills C<@A(RGV)> in B<-A> twice, the 2nd time looping over the 1st list,
as though it had been given on the command line.  It maps it to the 16-fold
number format to print the header, swallowing every other number with 0-width.

 view all matches for this distribution


App-pltest

 view release on metacpan or  search on metacpan

pod/examples.pod  view on Meta::CPAN


I<What color is a mirror?  It depends whom you ask. ;-)>

You get numbers to fill into C<"\e[BGm">, C<"\e[FGm"> or C<"\e[BG;FGm"> to get
a color and close it with C<"\e[m">.  There are twice twice 8 different colors
for dim & bright and for background & foreground.  Hence the multiplication of
escape codes and of values to fill them.

This fills C<@A(RGV)> in B<-A> twice, the 2nd time looping over the 1st list,
as though it had been given on the command line.  It maps it to the 16-fold
number format to print the header, swallowing every other number with 0-width.

 view all matches for this distribution


App-proxyforurl

 view release on metacpan or  search on metacpan

script/proxyforurl  view on Meta::CPAN

%= stylesheet begin
  body {
    margin-top: 5rem;
  }
  nav {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: saturate(150%) blur(18px);
    border-bottom: 1px solid var(--muted-border-color);
    position: fixed;
    top: 0;
    left: 0;

 view all matches for this distribution


( run in 2.488 seconds using v1.01-cache-2.11-cpan-f56aa216473 )