Ejemplo n.º 1
0
        public static void Set()
        {
            string[] tmp = { "\"ls\" command colors", "Pre shell colors" };

            int input = Choose(tmp);

            if (input == 0)
            {
                Default();
            }
            else if (input == 1)
            {
                Ls.Change();
            }
            else if (input == 2)
            {
                Prompt.Change();
            }
        }