We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad7c6f9 commit 41b63f1Copy full SHA for 41b63f1
assets/demo.png
19.7 KB
utils/types.cpp
@@ -211,6 +211,12 @@ void print_files(const std::vector<File>& files) {
211
}
212
213
214
+ // Set colors
215
+ file.set_size(green(file.get_size()));
216
+ file.set_group(yellow(file.get_group()));
217
+ file.set_user(yellow(file.get_user()));
218
+ file.set_modified(light_blue(file.get_modified()));
219
+
220
std::cout << perm_denote + file.get_perms() << ' ';
221
std::cout << file.get_size() << ' ';
222
std::cout << file.get_group() << ' ';
0 commit comments