]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - os/debian/aptitude/config.in
2030dfb952a058b9e3ce29bd721329b9e7a31a74
[config/dotfiles.git] / os / debian / aptitude / config.in
1 // Aptitude configuration file.
2
3 // Copyright (C) 2009-2013  Simon Ruderich
4 //
5 // This file is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This file is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this file.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 aptitude {
20     UI {
21         // Only display menubar when it's active.
22         Menubar-Autohide "true";
23         // Don't display often used commands as help, I know them.
24         HelpBar "false";
25
26         // Use normal grouping with origin (~O) package as new top level.
27         // Thanks to hark in #debian on Freenode (2009-04-02 19:14) and
28         // http://noone.org/blog/English/Computer/Debian/Group%20by%20origin%20in%20aptitude.futile
29         // the site he pointed me to.
30         //Default-Grouping "task,status,pattern(~O, !~O => other),section(subdirs,passthrough),section(topdir)";
31         // Same as Default-Grouping but only display packages which are
32         // changed (so no upgradeable are shown).
33         //Default-Preview-Grouping "pattern(~O),action,section(topdir),filter(~ainstall | ~aupgrade | ~adowngrade | ~aremove | ~apurge | ~ahold)";
34
35         // Pause before installing any packages.
36         Pause-After-Download "Yes";
37     }
38
39     // Don't display a warning when performing changes (add new packages,
40     // etc.) in read only mode.
41     Suppress-Read-Only-Warning "true";
42 }
43
44 Apt {
45     // Don't install recommended packages by default. The most annoying
46     // aptitude default!
47     Install-Recommends "false";
48 }
49
50 // vim: ft=cfg