If you want a faster alternative to ls that only specifies what is directory and what is file then:
You can create a simple executable with name ls_fast or whatever name you prefer in ~/.local/bin with the following content:
#!/usr/bin/env python3
import os
import colorama
import sys
if len(sys.argv) == 1:
sys.argv.append(".")
dir_content = os.listdir(sys.argv[1])
for x in dir_content:
if os.path.isdir(os.path.abspath(f"{sys.argv[1]}/{x}")):
print(colorama.Fore.BLUE+x+colorama.Fore.RESET)
else:
print(x)
the output of above might not be very good looking because it will use only 2 colors that is blue for directories and white for files but the above should work way faster than ls.
Now after writing the above file change its mode to executable:
chmod +x ~/.local/bin/ls_fast
or whatever you named it. Now restart the terminal and you should have a simple command named ls_fast with you. The command does not have many features but it just works.