X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=blobdiff_plain;f=os%2Fdebian%2Faptitude%2Fconfig.in;fp=os%2Fdebian%2Faptitude%2Fconfig.in;h=2030dfb952a058b9e3ce29bd721329b9e7a31a74;hp=0000000000000000000000000000000000000000;hb=ae5f25d9ebf147d2c5d724a0902d91beff577ca3;hpb=0e1f3846c77e6b0ca5d9215b07f6e587cedd19d9 diff --git a/os/debian/aptitude/config.in b/os/debian/aptitude/config.in new file mode 100644 index 0000000..2030dfb --- /dev/null +++ b/os/debian/aptitude/config.in @@ -0,0 +1,50 @@ +// Aptitude configuration file. + +// Copyright (C) 2009-2013 Simon Ruderich +// +// This file is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This file is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this file. If not, see . + + +aptitude { + UI { + // Only display menubar when it's active. + Menubar-Autohide "true"; + // Don't display often used commands as help, I know them. + HelpBar "false"; + + // Use normal grouping with origin (~O) package as new top level. + // Thanks to hark in #debian on Freenode (2009-04-02 19:14) and + // http://noone.org/blog/English/Computer/Debian/Group%20by%20origin%20in%20aptitude.futile + // the site he pointed me to. + //Default-Grouping "task,status,pattern(~O, !~O => other),section(subdirs,passthrough),section(topdir)"; + // Same as Default-Grouping but only display packages which are + // changed (so no upgradeable are shown). + //Default-Preview-Grouping "pattern(~O),action,section(topdir),filter(~ainstall | ~aupgrade | ~adowngrade | ~aremove | ~apurge | ~ahold)"; + + // Pause before installing any packages. + Pause-After-Download "Yes"; + } + + // Don't display a warning when performing changes (add new packages, + // etc.) in read only mode. + Suppress-Read-Only-Warning "true"; +} + +Apt { + // Don't install recommended packages by default. The most annoying + // aptitude default! + Install-Recommends "false"; +} + +// vim: ft=cfg