cmdtree

A trie command launcher for X11
git clone git://jb55.com/cmdtree
Log | Files | Refs | README | LICENSE

commit ee15cfcfddbcc521dc8492c0299fcb8203acbb05
parent b68725591aa897350e081804c0b554f8b5bc1a29
Author: William Casarin <jb55@jb55.com>
Date:   Tue, 10 Jul 2018 07:44:41 -0700

clean up example cfg

Diffstat:
Mcfg.def.h | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/cfg.def.h b/cfg.def.h @@ -43,8 +43,9 @@ static struct command test_commands[] = { DEFCMD("t", "test command", "echo ok") }; + static struct command browser_commands[] = { - DEFCMD("s", "chrome scaled", "chrome") + DEFCMD("s", "chrome scaled", "chromium --force-device-scale-factor=1.25") DEFCMD("c", "chromium", "chromium") DEFCMD("f", "firefox", "firefox") DEFCMD("k", "kill chrome", "pkill --oldest chromium") @@ -53,5 +54,5 @@ static struct command browser_commands[] = { static struct command commands[] = { DEFPREFIX("b", "browsers", browser_commands) - DEFCMD("e", "emacs", "emacs-dev") + DEFCMD("e", "emacs", "emacs") };