summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Casarin <jb55@jb55.com>2018-07-10 07:44:41 -0700
committerWilliam Casarin <jb55@jb55.com>2018-07-10 07:44:41 -0700
commitee15cfcfddbcc521dc8492c0299fcb8203acbb05 (patch)
treeb8174484bec12f92bf4b9ff00197b0ae97085878
parentb68725591aa897350e081804c0b554f8b5bc1a29 (diff)
clean up example cfg
-rw-r--r--cfg.def.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/cfg.def.h b/cfg.def.h
index c2b0c7f..06bf181 100644
--- 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")
};