Tab Colors, Folder Colors
Moderators: Hacker, petermad, Stefan2, white
Tab Colors, Folder Colors
Greetings,
001
could there be a way in the future,
to color TABS of directories
(i mean the tabs under drive letters - c:\ )
by similar scheme
as we have it in options menu:
Configuration/Options/Color
002
im done with apple osx for life,
and they have an option
to color code individual folders
by right clicking
i hope you're all doing well,
much respect to you <3
001
could there be a way in the future,
to color TABS of directories
(i mean the tabs under drive letters - c:\ )
by similar scheme
as we have it in options menu:
Configuration/Options/Color
002
im done with apple osx for life,
and they have an option
to color code individual folders
by right clicking
i hope you're all doing well,
much respect to you <3
Re: Tab Colors, Folder Colors
Oh, this is good! Tab/dir colours would be handy, but latter (unfortunately) isn't a native property of NT / NTFS.
Re: Tab Colors, Folder Colors
Tab colours: Search the forum for ActiveTabColor
Dir/folder colours:
1. Look at configuration, Display, Color, Define colours by Filetype where you can set colours based on saved searches; or more flexibile
2. Create a file comment (ctrl-z) on a folder, add something like "green" or "yellow", now use this with a search rule and autoview to automatically colour a folder / file name, based on its comment
Dir/folder colours:
1. Look at configuration, Display, Color, Define colours by Filetype where you can set colours based on saved searches; or more flexibile
2. Create a file comment (ctrl-z) on a folder, add something like "green" or "yellow", now use this with a search rule and autoview to automatically colour a folder / file name, based on its comment
F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
- Vochomurka
- Power Member
- Posts: 816
- Joined: 2005-09-14, 22:19 UTC
- Location: Russia
- Contact:
Re: Tab Colors, Folder Colors
Highlight current tab script (single tab)
TabTools script (many tabs)
TWinKey (colorize tabs manually)
TabTools script (many tabs)
TWinKey (colorize tabs manually)
Single user license #329241
PowerPro scripts for Total Commander
PowerPro scripts for Total Commander
Re: Tab Colors, Folder Colors
2fanboy
You can use View Modes in conjunction with Auto Switch Mode for this
You can use View Modes in conjunction with Auto Switch Mode for this
License #524 (1994)
Danish Total Commander Translator
TC 11.51 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1391a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Danish Total Commander Translator
TC 11.51 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1391a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Re: Tab Colors, Folder Colors
2petermad
FYI, I did see how to implement that option:
Assuming that I implemented that option correctly, I just don't understand how to use it.
FYI, I am particularly interested in improving legibility when I use
Configuration. Options. Color. "Define colors by file type..."
I do realize that Ghisler considered and rejected allowing changing more than the font color. (e.g. bold, background color)
And FYI I am using a monospaced font so Bolding would not change letter width.
Are there examples of when that would be useful?You can use View Modes in conjunction with Auto Switch Mode for this
FYI, I did see how to implement that option:
Code: Select all
[ViewModeSwitch]
[ViewModes]
0_name=<default>
0_icon=
0_options=-1|-1|0||-1|-1|-1|-1|-1
1_name=testViewMode
1_commands=cm_ConfigViewModeSwitch
1_options=-1|-1|0||65280|0|15790335|-1|-1
FYI, I am particularly interested in improving legibility when I use
Configuration. Options. Color. "Define colors by file type..."
I do realize that Ghisler considered and rejected allowing changing more than the font color. (e.g. bold, background color)
And FYI I am using a monospaced font so Bolding would not change letter width.
- sqa_wizard
- Power Member
- Posts: 3893
- Joined: 2003-02-06, 11:41 UTC
- Location: Germany
Re: Tab Colors, Folder Colors
nn1k3: If you defined a ViewMode only, you can select it via right click on the active tab.
If you want a ViewMode to be activated automatically, you have to define a condition for this as ViewModeSwitch.
e.g. you have a folder "D:\download\" and want to activate ViewMode 1 when you enter this folder
If you want a ViewMode to be activated automatically, you have to define a condition for this as ViewModeSwitch.
e.g. you have a folder "D:\download\" and want to activate ViewMode 1 when you enter this folder
Code: Select all
[ViewModeSwitch]
0_rules=+D:\download\*.*
0_mode=1
[ViewModes]
0_name=<default>
0_icon=
0_options=-1|-1|0||-1|-1|-1|-1|-1
1_name=testViewMode
1_commands=cm_ConfigViewModeSwitch
1_options=-1|-1|0||65280|0|15790335|-1|-1
#5767 Personal license
Re: Tab Colors, Folder Colors
thanks lads!