diff --git a/clir/tools/functions.py b/clir/tools/functions.py index 8356097..0d6187a 100644 --- a/clir/tools/functions.py +++ b/clir/tools/functions.py @@ -43,9 +43,9 @@ def command_table(commands: dict = {}): table = Table(show_lines=True, box=box.ROUNDED, style="grey46") table.add_column("ID 📇", style="white bold", no_wrap=True) - table.add_column("Command 💻", style="green", no_wrap=True) - table.add_column("Description 📕", style="magenta") - table.add_column("Tag 🏷️", style="cyan") + table.add_column("Command 💻", style="green bold", no_wrap=True) + table.add_column("Description 📕", style="magenta bold") + table.add_column("Tag 🏷️", style="cyan bold") for indx, command in enumerate(commands): desc_len = 50 diff --git a/pyproject.toml b/pyproject.toml index 4d7d43c..9b7abe0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "clir" -version = "0.2.3" +version = "0.2.4" description = "A clear and fast way to store and recover your commands" authors = ["Elkin Aguas "] license = "MIT License"