bash-color-grc/colourfiles/conf.ls

74 lines
2.1 KiB
Plaintext
Raw Normal View History

# The following matches file sizes as produced by ls -l or ls -lh
# The output produced by ls -s is probably not specific
# enough to be reliably matched, especially considering ls -s(k|m|g|G).
#
# Example lines:
# -rw-r--r-- 1 user staff 344M Mar 22 22:51 MVI_8735.m4v
# -rw-r--r-- 1 user staff 360050327 Mar 22 22:51 MVI_8735.m4v
#
# The regexp uses lookahead to match a date following the size
# size: 1M <= size < 10M
regexp=\s+(\d{7}|\d([,\.]\d+)?M)(?=\s[A-Z][a-z]{2}\s)
colours=green
=======
# size: 10M <= size < 100M
regexp=\s+(\d{8}|\d\d([,\.]\d+)?M)(?=\s[A-Z][a-z]{2}\s)
2015-01-25 18:36:02 +01:00
colours=yellow
=======
# size: 100M <= size < 1G
regexp=\s+(\d{9}|\d{3}M)(?=\s[A-Z][a-z]{2}\s)
colours=red
=======
# size: 1G <= size
regexp=\s+(\d{10,}|[\d\.,]+G)(?=\s[A-Z][a-z]{2}\s)
colours=bold red
=======
2016-06-19 01:18:18 +02:00
# device major minor numbers
regexp=\s(\d+),\s+(\d+)\s
colours=default,bright_yellow ,yellow
=======
2015-01-25 18:36:02 +01:00
# time
regexp=(\s|^)[0-2]?\d(:[0-5]\d)(?=[\s,]|$)
2016-06-19 01:18:18 +02:00
colours=white
2015-01-25 18:36:02 +01:00
=======
2016-06-19 01:18:18 +02:00
# month
#regexp=\s[A-Z][a-z]{2}\s
2016-06-19 01:18:18 +02:00
#colours=yellow
#=======
2015-01-25 18:36:02 +01:00
#regexp=(?<=\d):(?=\d)
#colours=bold yellow
#=======
# root
2016-06-19 01:18:18 +02:00
regexp=\s(root|wheel)(?=\s|$)
colours=unchanged,bold white on_red
2015-01-25 18:36:02 +01:00
=======
2016-06-19 01:18:18 +02:00
# SELinux
regexp=(\w+_u):(\w+_r):(\w+_t):(\w\d)
colours=default,green,yellow,cyan,magenta
-
# -rwxrwxrwx ============================
# File Type
2015-01-25 18:36:02 +01:00
regexp=(-|([bcCdDlMnpPs?]))(?=[-r][-w][-xsStT][-r][-w][-xsStT][-r][-w][-xsStT])
2016-06-19 01:18:18 +02:00
colours=unchanged,unchanged,bold white
-
# owner rwx
2015-01-25 18:36:02 +01:00
regexp=(?<=[-bcCdDlMnpPs?])(-|(r))(-|(w))(-|([xsStT]))(?=[-r][-w][-xsStT][-r][-w][-xsStT])
2016-06-19 01:18:18 +02:00
colours=unchanged,unchanged,bright_green,unchanged,bright_green,unchanged,bright_green
-
# group rwx
2015-01-25 18:36:02 +01:00
regexp=(?<=[-bcCdDlMnpPs?][-r][-w][-xsStT])(-|(r))(-|(w))(-|([xsStT]))(?=[-r][-w][-xsStT])
2016-06-19 01:18:18 +02:00
colours=unchanged,unchanged,yellow,unchanged,yellow,unchanged,yellow
-
# other rwx
2015-01-25 18:36:02 +01:00
regexp=(?<=[-bcCdDlMnpPs?][-r][-w][-xsStT][-r][-w][-xsStT])(-|(r))(-|(w))(-|([xsStT]))
2016-06-19 01:18:18 +02:00
colours=unchanged,unchanged,bright_red,unchanged,bright_red,unchanged,bright_red
-
# sStT all
regexp=(?<=[-bcCdDlMnpPs?])[-r][-w]([sStT])[-r][-w]([sStT])[-r][-w]([sStT])
colours=unchanged,bold green,bold yellow, bold red
-
# ACL
regexp=^\S{10}(\+)
colours=unchanged,on_cyan bold white