File: aptitude-defaults

package info (click to toggle)
aptitude 0.8.7-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 40,420 kB
  • ctags: 11,072
  • sloc: cpp: 95,097; xml: 31,914; sh: 5,150; makefile: 932; perl: 88; cs: 68; lisp: 55; sed: 16
file content (143 lines) | stat: -rw-r--r-- 2,449 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// This file defines some default values for aptitude, including themes.
//
// It is sourced before /etc/apt/apt.conf and ~/.aptitude/config.  This is
// not meant to be a user configuration file; instead, it is an internal
// data file.  (which is why it is not stored in /etc)  To override settings
// in this file, use /etc/apt/apt.conf.

Aptitude::Themes
{
  Vertical-Split {
    Aptitude::UI::Package-Display-Format "%c%a%M %p %Z";

    Aptitude::UI::Default-Package-View {

      Header Static {
        Row 0;
        Column 0;
        Width 3;
        Height 1;

        ColExpand yes;
        ColAlign Center;

        RowAlign Center;

        Color ScreenHeaderColor;

        ColumnsCfg HEADER;
      };

      Center MainWidget {
        Row 1;
        Column 0;
        Width 1;
        Height 1;

        RowExpand yes;
        RowShrink yes;

        ColExpand yes;
        ColShrink yes;
      };

      Bottom Static {
        Row 2;
        Column 0;
        Width 3;
        Height 1;

        ColExpand yes;
        ColAlign center;

        RowAlign center;

        Color ScreenStatusColor;

        ColumnsCfg STATUS;
      };

      sep Static {
        Row 1;
        Column 1;
        Width 1;
        Height 1;

        ColExpand no;

        RowExpand yes;
        RowShrink yes;

        PopupdownLinked desc;

        Columns "";
        Color ScreenStatusColor;
      };

      desc Description {
        Row 1;
        Column 2;
        Width 1;
        Height 1;

        ColExpand yes;

        RowShrink yes;
        RowExpand yes;

        Popupdownkey ShowHideDescription;
      };
    };
  };

  Dselect {
    Aptitude::UI::Package-Display-Format "c%a %R %8s %12p %11v %11V %d#";
    Aptitude::UI::Package-Status-Format "%12p %10C; %7A #%P";
    Aptitude::UI::Default-Grouping "filter(missing),status,priority,section";
    Aptitude::UI::Advance-On-Action yes;

    Aptitude::UI::Default-Package-View {
      Center MainWidget {
        Row 0;
	Column 0;
	Width 1;
	Height 1;

	RowExpand yes;
	RowShrink yes;

	ColExpand yes;
	ColShrink yes;
      }

      Bar Static {
        Row 1;
	Column 0;
	Width 1;
	Height 1;
	ColExpand yes;
	ColAlign center;

	RowAlign center;

	Color ScreenStatusColor;
	ColumnsCfg STATUS;
      };

      desc Description {
        Row 2;
	Column 0;
	Width 1;
	Height 1;

	ColExpand yes;

	RowExpand yes;
	RowShrink yes;

	Popupdownkey ShowHideDescription;
      };
    };
  };
};