summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--TODO2
-rw-r--r--ranger/gui/widgets/titlebar.py7
2 files changed, 6 insertions, 3 deletions
diff --git a/TODO b/TODO
index 3366ca4e..9a5a4675 100644
--- a/TODO
+++ b/TODO
@@ -56,7 +56,7 @@ Bugs
    (X) #31  10/01/06  ^C breaks cd-after-exit by stopping sourced shell script
    ( ) #40  10/01/17  freeze with unavailable sshfs
    (X) #41  10/01/17  capital file extensions are not recognized
-   ( ) #46  10/01/19  old username displayed after using su
+   (X) #46  10/01/19  old username displayed after using su
    (X) #49  10/01/19  fix unit tests :'(
    ( ) #52  10/01/23  special characters in tab completion
    (X) #54  10/01/23  max_dirsize_for_autopreview not working
diff --git a/ranger/gui/widgets/titlebar.py b/ranger/gui/widgets/titlebar.py
index 43729947..7c164ae9 100644
--- a/ranger/gui/widgets/titlebar.py
+++ b/ranger/gui/widgets/titlebar.py
@@ -53,9 +53,12 @@ class TitleBar(Widget):
 		self.result = bar.combine()
 
 	def _get_left_part(self, bar):
-		import socket, os
+		import socket, os, pwd
 
-		username = os.getenv('USER')
+		try:
+			username = pwd.getpwuid(os.geteuid()).pw_name
+		except:
+			username = "???"
 		if username == 'root':
 			clr = 'bad'
 		else:
7201f9ca85'>^
a4cadf78 ^
ef942bd2 ^

a4cadf78 ^
ef942bd2 ^
a3a73cf0 ^



ef942bd2 ^



a2726b6a ^

ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^












74e06116 ^
a3a73cf0 ^
29452f8f ^
a2726b6a ^

29452f8f ^




a2726b6a ^
29452f8f ^









a3a73cf0 ^
a2726b6a ^
a3a73cf0 ^
a2726b6a ^
a8990014 ^
75cfe388 ^

f2159559 ^
705b6f78 ^
a8990014 ^




75cfe388 ^
a8990014 ^
75cfe388 ^
75cfe388 ^
a8990014 ^


75cfe388 ^
a8990014 ^

75cfe388 ^
a2726b6a ^
75cfe388 ^
a3a73cf0 ^





74e06116 ^
a2726b6a ^
a3a73cf0 ^
a2726b6a ^
4d718488 ^
a3a73cf0 ^
a3a73cf0 ^


74e06116 ^
a2726b6a ^
a3a73cf0 ^
a2726b6a ^
4d718488 ^
a3a73cf0 ^
a3a73cf0 ^


1224aa41 ^
a2726b6a ^
1224aa41 ^
a2726b6a ^
a2726b6a ^
1224aa41 ^
4d718488 ^



1224aa41 ^



b8e46552 ^




705b6f78 ^
b8e46552 ^











a3a73cf0 ^

ef942bd2 ^
a2726b6a ^

f1141932 ^


ef942bd2 ^
f1141932 ^
ef942bd2 ^

f1141932 ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^





a3a73cf0 ^

ef942bd2 ^
a2726b6a ^

f1141932 ^


ef942bd2 ^
f1141932 ^
ef942bd2 ^

f1141932 ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^




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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244