Advertisement
idroj07

no LS output colors in Termite

Oct 9th, 2019
2,932
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ###### DIRCOLORS -P ######
  2.  
  3. # Configuration file for dircolors, a utility to help you set the
  4. # LS_COLORS environment variable used by GNU ls with the --color option.
  5. # Copyright (C) 1996-2019 Free Software Foundation, Inc.
  6. # Copying and distribution of this file, with or without modification,
  7. # are permitted provided the copyright notice and this notice are preserved.
  8. # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
  9. # slackware version of dircolors) are recognized but ignored.
  10. # Below are TERM entries, which can be a glob patterns, to match
  11. # against the TERM environment variable to determine if it is colorizable.
  12. TERM Eterm
  13. TERM ansi
  14. TERM *color*
  15. TERM con[0-9]*x[0-9]*
  16. TERM cons25
  17. TERM console
  18. TERM cygwin
  19. TERM dtterm
  20. TERM gnome
  21. TERM hurd
  22. TERM jfbterm
  23. TERM konsole
  24. TERM kterm
  25. TERM linux
  26. TERM linux-c
  27. TERM mlterm
  28. TERM putty
  29. TERM rxvt*
  30. TERM screen*
  31. TERM st
  32. TERM terminator
  33. TERM tmux*
  34. TERM vt100
  35. TERM xterm*
  36. # Below are the color init strings for the basic file types.
  37. # One can use codes for 256 or more colors supported by modern terminals.
  38. # The default color codes use the capabilities of an 8 color terminal
  39. # with some additional attributes as per the following codes:
  40. # Attribute codes:
  41. # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
  42. # Text color codes:
  43. # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
  44. # Background color codes:
  45. # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
  46. #NORMAL 00 # no color code at all
  47. #FILE 00 # regular file: use no color at all
  48. RESET 0 # reset to "normal" color
  49. DIR 01;34 # directory
  50. LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
  51.  # numerical value, the color is as for the file pointed to.)
  52. MULTIHARDLINK 00 # regular file with more than one link
  53. FIFO 40;33 # pipe
  54. SOCK 01;35 # socket
  55. DOOR 01;35 # door
  56. BLK 40;33;01 # block device driver
  57. CHR 40;33;01 # character device driver
  58. ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file ...
  59. MISSING 00 # ... and the files they point to
  60. SETUID 37;41 # file that is setuid (u+s)
  61. SETGID 30;43 # file that is setgid (g+s)
  62. CAPABILITY 30;41 # file with capability
  63. STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
  64. OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
  65. STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
  66. # This is for files with execute permission:
  67. EXEC 01;32
  68. # List any file extensions like '.gz' or '.tar' that you would like ls
  69. # to colorize below. Put the extension, a space, and the color init string.
  70. # (and any comments you want to add after a '#')
  71. # If you use DOS-style suffixes, you may want to uncomment the following:
  72. #.cmd 01;32 # executables (bright green)
  73. #.exe 01;32
  74. #.com 01;32
  75. #.btm 01;32
  76. #.bat 01;32
  77. # Or if you want to colorize scripts even if they do not have the
  78. # executable bit actually set.
  79. #.sh 01;32
  80. #.csh 01;32
  81.  # archives or compressed (bright red)
  82. .tar 01;31
  83. .tgz 01;31
  84. .arc 01;31
  85. .arj 01;31
  86. .taz 01;31
  87. .lha 01;31
  88. .lz4 01;31
  89. .lzh 01;31
  90. .lzma 01;31
  91. .tlz 01;31
  92. .txz 01;31
  93. .tzo 01;31
  94. .t7z 01;31
  95. .zip 01;31
  96. .z 01;31
  97. .dz 01;31
  98. .gz 01;31
  99. .lrz 01;31
  100. .lz 01;31
  101. .lzo 01;31
  102. .xz 01;31
  103. .zst 01;31
  104. .tzst 01;31
  105. .bz2 01;31
  106. .bz 01;31
  107. .tbz 01;31
  108. .tbz2 01;31
  109. .tz 01;31
  110. .deb 01;31
  111. .rpm 01;31
  112. .jar 01;31
  113. .war 01;31
  114. .ear 01;31
  115. .sar 01;31
  116. .rar 01;31
  117. .alz 01;31
  118. .ace 01;31
  119. .zoo 01;31
  120. .cpio 01;31
  121. .7z 01;31
  122. .rz 01;31
  123. .cab 01;31
  124. .wim 01;31
  125. .swm 01;31
  126. .dwm 01;31
  127. .esd 01;31
  128. # image formats
  129. .jpg 01;35
  130. .jpeg 01;35
  131. .mjpg 01;35
  132. .mjpeg 01;35
  133. .gif 01;35
  134. .bmp 01;35
  135. .pbm 01;35
  136. .pgm 01;35
  137. .ppm 01;35
  138. .tga 01;35
  139. .xbm 01;35
  140. .xpm 01;35
  141. .tif 01;35
  142. .tiff 01;35
  143. .png 01;35
  144. .svg 01;35
  145. .svgz 01;35
  146. .mng 01;35
  147. .pcx 01;35
  148. .mov 01;35
  149. .mpg 01;35
  150. .mpeg 01;35
  151. .m2v 01;35
  152. .mkv 01;35
  153. .webm 01;35
  154. .ogm 01;35
  155. .mp4 01;35
  156. .m4v 01;35
  157. .mp4v 01;35
  158. .vob 01;35
  159. .qt 01;35
  160. .nuv 01;35
  161. .wmv 01;35
  162. .asf 01;35
  163. .rm 01;35
  164. .rmvb 01;35
  165. .flc 01;35
  166. .avi 01;35
  167. .fli 01;35
  168. .flv 01;35
  169. .gl 01;35
  170. .dl 01;35
  171. .xcf 01;35
  172. .xwd 01;35
  173. .yuv 01;35
  174. .cgm 01;35
  175. .emf 01;35
  176. # https://wiki.xiph.org/MIME_Types_and_File_Extensions
  177. .ogv 01;35
  178. .ogx 01;35
  179. # audio formats
  180. .aac 00;36
  181. .au 00;36
  182. .flac 00;36
  183. .m4a 00;36
  184. .mid 00;36
  185. .midi 00;36
  186. .mka 00;36
  187. .mp3 00;36
  188. .mpc 00;36
  189. .ogg 00;36
  190. .ra 00;36
  191. .wav 00;36
  192. # https://wiki.xiph.org/MIME_Types_and_File_Extensions
  193. .oga 00;36
  194. .opus 00;36
  195. .spx 00;36
  196. .xspf 00;36
  197.  
  198.  
  199. ###### .XRESOURCES ######
  200.  
  201. Xft.dpi:       96
  202. Xft.antialias: true
  203. Xft.hinting:   true
  204. Xft.rgba:      rgb
  205. Xft.autohint:  false
  206. Xft.hintstyle: hintslight
  207. Xft.lcdfilter: lcddefault
  208.  
  209. XTerm*background:        #222D31
  210. XTerm*foreground:        #d8d8d8
  211. XTerm*pointerColor:      #1ABB9B
  212. XTerm*faceName:          Fixed
  213. XTerm*faceSize:          11
  214. XTerm*reverseVideo:      on
  215. XTerm*selectToClipboard: true
  216.  
  217. *background:                      #222D31
  218. *foreground:                      #d8d8d8
  219. *fading:                          8
  220. *fadeColor:                       black
  221. *cursorColor:                     #1ABB9B
  222. *pointerColorBackground:          #2B2C2B
  223. *pointerColorForeground:          #16A085
  224.  
  225. !! black dark/light
  226. *color0:                          #222D31
  227. *color8:                          #585858
  228.  
  229. !! red dark/light
  230. *color1:                          #ab4642
  231. *color9:                          #ab4642
  232.  
  233. !! green dark/light
  234. *color2:                          #7E807E
  235. *color10:                         #8D8F8D
  236.  
  237. !! yellow dark/light
  238. *color3:                          #f7ca88
  239. *color11:                         #f7ca88
  240.  
  241. !! blue dark/light
  242. *color4:                          #7cafc2
  243. *color12:                         #7cafc2
  244.  
  245. !! magenta dark/light
  246. *color5:                          #ba8baf
  247. *color13:                         #ba8baf
  248.  
  249. !! cyan dark/light
  250. *color6:                          #1ABB9B
  251. *color14:                         #1ABB9B
  252.  
  253. !! white dark/light
  254. *color7:                          #d8d8d8
  255. *color15:                         #f8f8f8
  256.  
  257. Xcursor.theme: xcursor-breeze
  258. Xcursor.size:                     0
  259.  
  260. URxvt.font:                       9x15,xft:TerminessTTFNerdFontMono
  261.  
  262. ! alternative font settings with 'terminus':
  263. ! URxvt.font:      -xos4-terminus-medium-r-normal--16-160-72-72-c-80-iso10646-1
  264. ! URxvt.bold.font: -xos4-terminus-bold-r-normal--16-160-72-72-c-80-iso10646-1
  265. !! terminus names see end of file!
  266.  
  267. URxvt.depth:                      32
  268. URxvt.background:                 [100]#222D31
  269. URxvt*scrollBar:                  false
  270. URxvt*mouseWheelScrollPage:       false
  271. URxvt*cursorBlink:                true
  272. URxvt*background:                 black
  273. URxvt*foreground:                 grey
  274. URxvt*saveLines:                  5000
  275.  
  276. ! for 'fake' transparency (without Compton) uncomment the following three lines
  277. ! URxvt*inheritPixmap:            true
  278. ! URxvt*transparent:              true
  279. ! URxvt*shading:                  138
  280.  
  281. ! Normal copy-paste keybindings without perls
  282. URxvt.iso14755:                   false
  283. URxvt.keysym.Shift-Control-V:     eval:paste_clipboard
  284. URxvt.keysym.Shift-Control-C:     eval:selection_to_clipboard
  285. !Xterm escape codes, word by word movement
  286. URxvt.keysym.Control-Left:        \033[1;5D
  287. URxvt.keysym.Shift-Control-Left:  \033[1;6D
  288. URxvt.keysym.Control-Right:       \033[1;5C
  289. URxvt.keysym.Shift-Control-Right: \033[1;6C
  290. URxvt.keysym.Control-Up:          \033[1;5A
  291. URxvt.keysym.Shift-Control-Up:    \033[1;6A
  292. URxvt.keysym.Control-Down:        \033[1;5B
  293. URxvt.keysym.Shift-Control-Down:  \033[1;6B
  294. ! Rxvt.perl-ext-common:             ...,clipboard
  295. ! URxvt.keysym.M-C-c:               perl:clipboard:copy
  296. ! URxvt.keysym.M-v:                 perl:clipboard:paste
  297. ! URxvt.keysym.M-C-v:               perl:clipboard:paste_escaped
  298. ! URxvt*termName:                   string
  299. ! URxvt*geometry:                   geometry
  300. ! URxvt*chdir:                      string
  301. ! URxvt*loginShell:                 boolean
  302. ! URxvt*multiClickTime:             number
  303. ! URxvt*jumpScroll:                 boolean
  304. ! URxvt*skipScroll:                 boolean
  305. ! URxvt*pastableTabs:               boolean
  306. ! URxvt*scrollstyle:                plain
  307. ! URxvt*scrollBar_right:            boolean
  308. ! URxvt*scrollBar_floating:         true
  309. ! URxvt*scrollBar_align:            mode
  310. ! URxvt*thickness:                  number
  311. ! URxvt*scrollTtyOutput:            boolean
  312. ! URxvt*scrollTtyKeypress:          boolean
  313. ! URxvt*scrollWithBuffer:           boolean
  314. ! URxvt*tintColor:                  !7DA55
  315. ! URxvt*blurRadius:                 HxV
  316. ! URxvt*fading:                     number
  317. ! URxvt*fadeColor:                  color
  318. ! URxvt*utmpInhibit:                boolean
  319. ! URxvt*urgentOnBell:               boolean
  320. ! URxvt*visualBell:                 boolean
  321. ! URxvt*mapAlert:                   boolean
  322. ! URxvt*meta8:                      boolean
  323. ! URxvt*tripleclickwords:           boolean
  324. ! URxvt*insecure:                   boolean
  325. ! URxvt*cursorUnderline:            boolean
  326. ! URxvt*pointerBlank:               boolean
  327. ! URxvt*color0:                     color
  328. ! URxvt*color1:                     color
  329. ! URxvt*color2:                     color
  330. ! URxvt*color3:                     color
  331. ! URxvt*color4:                     color
  332. ! URxvt*color5:                     color
  333. ! URxvt*color6:                     color
  334. ! URxvt*color7:                     color
  335. ! URxvt*color8:                     color
  336. ! URxvt*color9:                     color
  337. ! URxvt*color10:                    color
  338. ! URxvt*color11:                    color
  339. ! URxvt*color12:                    color
  340. ! URxvt*color13:                    color
  341. ! URxvt*color14:                    color
  342. ! URxvt*color15:                    color
  343. ! URxvt*colorBD:                    color
  344. ! URxvt*colorIT:                    color
  345. ! URxvt*colorUL:                    color
  346. ! URxvt*colorRV:                    color
  347. ! URxvt*underlineColor:             color
  348. ! URxvt*scrollColor:                color
  349. ! URxvt*troughColor:                color
  350. ! URxvt*highlightColor:             color
  351. ! URxvt*highlightTextColor:         color
  352. ! URxvt*cursorColor:                color
  353. ! URxvt*cursorColor2:               color
  354. ! URxvt*pointerColor:               color
  355. ! URxvt*pointerColor2:              color
  356. ! URxvt*borderColor:                color
  357. ! URxvt*iconFile:                   file
  358. ! URxvt*font:                       fontname
  359. ! URxvt*boldFont:                   fontname
  360. ! URxvt*italicFont:                 fontname
  361. ! URxvt*boldItalicFont:             fontname
  362. ! URxvt*intensityStyles:            boolean
  363. ! URxvt*inputMethod:                name
  364. ! URxvt*preeditType:                style
  365. ! URxvt*imLocale:                   string
  366. ! URxvt*imFont:                     fontname
  367. ! URxvt*title:                      string
  368. ! URxvt*iconName:                   string
  369. ! URxvt*buffered:                   boolean
  370. ! URxvt*depth:                      number
  371. ! URxvt*visual:                     number
  372. ! URxvt*transient-for:              windowid
  373. ! URxvt*override-redirect:          boolean
  374. ! URxvt*hold:                       boolean
  375. ! URxvt*externalBorder:             number
  376. ! URxvt*internalBorder:             number
  377. ! URxvt*borderLess:                 true
  378. ! URxvt*lineSpace:                  number
  379. ! URxvt*letterSpace:                number
  380. ! URxvt*skipBuiltinGlyphs:          boolean
  381. ! URxvt*pointerBlankDelay:          number
  382. ! URxvt*backspacekey:               string
  383. ! URxvt*deletekey:                  string
  384. ! URxvt*print-pipe:                 string
  385. ! URxvt*modifier:                   modifier
  386. ! URxvt*cutchars:                   string
  387. ! URxvt*answerbackString:           string
  388. ! URxvt*secondaryScreen:            boolean
  389. ! URxvt*secondaryScroll:            boolean
  390. ! URxvt*perl-lib:                   string
  391. ! URxvt*perl-eval:                  perl-eval
  392. ! URxvt*perl-ext-common:            string
  393. ! URxvt*perl-ext:                   string
  394. ! URxvt*iso14755:                   boolean
  395. ! URxvt*iso14755_52:                boolean
  396. ! URxvt*xrm:                        string
  397. ! URxvt*keysym.sym:                 keysym
  398. ! URxvt*background.border:          boolean
  399. ! URxvt*background.expr:            string
  400. ! URxvt*background.interval:        seconds
  401. ! URxvt*bell-command:               string
  402. ! URxvt*kuake.hotkey:               string
  403. ! URxvt*matcher.button:             string
  404. ! URxvt*matcher.launcher:           string
  405. ! URxvt*matcher.launcher.*:         string
  406. ! URxvt*matcher.pattern.*:          string
  407. ! URxvt*matcher.rend.*:             string
  408. ! URxvt*remote-clipboard.fetch:     string
  409. ! URxvt*remote-clipboard.store:     string
  410. ! URxvt*searchable-scrollback:      string
  411. ! URxvt*selection-autotransform.*:  string
  412. ! URxvt*selection-pastebin.cmd:     string
  413. ! URxvt*selection-pastebin.url:     string
  414. ! URxvt*selection.pattern-0:        string
  415. ! URxvt*tab-bg:                     colour
  416. ! URxvt*tab-fg:                     colour
  417. ! URxvt*tabbar-bg:                  colour
  418. ! URxvt*tabbar-fg:                  colour
  419. ! URxvt*url-launcher:               string
  420.  
  421. ! The Terminus font uses the following X-names:
  422. ! -xos4-terminus-medium-r-normal--12-120-72-72-c-60-iso10646-1
  423. ! -xos4-terminus-medium-r-normal--14-140-72-72-c-80-iso10646-1
  424. ! -xos4-terminus-medium-r-normal--16-160-72-72-c-80-iso10646-1
  425. ! -xos4-terminus-medium-r-normal--20-200-72-72-c-100-iso10646-1
  426. ! -xos4-terminus-medium-r-normal--22-220-72-72-c-110-iso10646-1
  427. ! -xos4-terminus-medium-r-normal--24-240-72-72-c-120-iso10646-1
  428. ! -xos4-terminus-medium-r-normal--28-280-72-72-c-140-iso10646-1
  429. ! -xos4-terminus-medium-r-normal--32-320-72-72-c-160-iso10646-1
  430. ! -xos4-terminus-bold-r-normal--12-120-72-72-c-60-iso10646-1
  431. ! -xos4-terminus-bold-r-normal--14-140-72-72-c-80-iso10646-1
  432. ! -xos4-terminus-bold-r-normal--16-160-72-72-c-80-iso10646-1
  433. ! -xos4-terminus-bold-r-normal--20-200-72-72-c-100-iso10646-1
  434. ! -xos4-terminus-bold-r-normal--24-240-72-72-c-120-iso10646-1
  435. ! -xos4-terminus-bold-r-normal--28-280-72-72-c-140-iso10646-1
  436. ! -xos4-terminus-bold-r-normal--32-320-72-72-c-160-iso10646-1
  437.  
  438.  
  439. ###### .CONFIG/TERMITE/CONFIG ######
  440.  
  441. [options]
  442. allow_bold = true
  443. #audible_bell = false
  444. bold_is_bright = true
  445. #cell_height_scale = 1.0
  446. #cell_width_scale = 1.0
  447. clickable_url = true
  448. #dynamic_title = true
  449. font = Monospace 20
  450. #fullscreen = true
  451. #icon_name = terminal
  452. #mouse_autohide = false
  453. #scroll_on_output = false
  454. #scroll_on_keystroke = true
  455. # Length of the scrollback buffer, 0 disabled the scrollback buffer
  456. # and setting it to a negative value means "infinite scrollback"
  457. scrollback_lines = 10000
  458. #search_wrap = true
  459. #urgent_on_bell = true
  460. #hyperlinks = false
  461.  
  462. # $BROWSER is used by default if set, with xdg-open as a fallback
  463. browser = xdg-open
  464.  
  465. # "system", "on" or "off"
  466. #cursor_blink = system
  467.  
  468. # "block", "underline" or "ibeam"
  469. cursor_shape = block
  470.  
  471. # Hide links that are no longer valid in url select overlay mode
  472. #filter_unmatched_urls = true
  473.  
  474. # Emit escape sequences for extra modified keys
  475. #modify_other_keys = false
  476.  
  477. # set size hints for the window
  478. #size_hints = false
  479.  
  480. # "off", "left" or "right"
  481. #scrollbar = off
  482.  
  483. [colors]
  484. # If both of these are unset, cursor falls back to the foreground color,
  485. # and cursor_foreground falls back to the background color.
  486. cursor = #dcdccc
  487. cursor_foreground = #dcdccc
  488.  
  489. foreground = #dcdccc
  490. foreground_bold = #ffffff
  491. background = #3f3f3f
  492.  
  493. # 20% background transparency (requires a compositor)
  494. background = rgba(63, 63, 63, 0.8)
  495.  
  496. # If unset, will reverse foreground and background
  497. highlight = #2f2f2f
  498.  
  499. # Colors from color0 to color254 can be set
  500. color0 = #3f3f3f
  501. color1 = #705050
  502. color2 = #60b48a
  503. color3 = #dfaf8f
  504. color4 = #506070
  505. color5 = #dc8cc3
  506. color6 = #8cd0d3
  507. color7 = #dcdccc
  508. color8 = #709080
  509. color9 = #dca3a3
  510. color10 = #c3bf9f
  511. color11 = #f0dfaf
  512. color12 = #94bff3
  513. color13 = #ec93d3
  514. color14 = #93e0e3
  515. color15 = #ffffff
  516.  
  517. [hints]
  518. #font = Monospace 12
  519. #foreground = #dcdccc
  520. #background = #3f3f3f
  521. #active_foreground = #e68080
  522. #active_background = #3f3f3f
  523. #padding = 2
  524. #border = #3f3f3f
  525. #border_width = 0.5
  526. #roundness = 2.0
  527.  
  528. # vim: ft=dosini cms=#%s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement