diff options
| author | Franck Cuny <franck@fcuny.net> | 2020-09-12 10:52:54 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2020-09-12 10:52:54 -0700 |
| commit | 3491084899af1521ffd1cf1344db4324edb915ce (patch) | |
| tree | 35ab8de77a7a0f60fcab6f2dcfb2c221e7e784b2 | |
| parent | emacs: set the font for macos (diff) | |
| download | emacs.d-3491084899af1521ffd1cf1344db4324edb915ce.tar.gz | |
linux: new resource files for linux
We start with the Xresources and xsession files for now. We want to set
the window manager to be i3, and we need to configure some things for
the fonts.
Update the email address in the makefile too.
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | Xresources | 3 | ||||
| -rw-r--r-- | xsession | 4 |
3 files changed, 10 insertions, 1 deletions
@@ -9,6 +9,8 @@ INSTALL = \ gitconfig \ gitignore \ tmux.conf \ + Xresources \ + xsession \ zshenv \ zshrc @@ -42,7 +44,7 @@ go-setup: .PHONY: git git: - @git config --local user.email "franck.cuny@gmail.com" + @git config --local user.email "franck@fcuny.net" @git config --local user.name "Franck Cuny" .PHONY: check-dead diff --git a/Xresources b/Xresources new file mode 100644 index 0000000..a7b2200 --- /dev/null +++ b/Xresources @@ -0,0 +1,3 @@ +Xft.dpi: 192 + +URxvt.font: xft:Bitstream Vera Sans Mono:size=10 diff --git a/xsession b/xsession new file mode 100644 index 0000000..3988e83 --- /dev/null +++ b/xsession @@ -0,0 +1,4 @@ +# set the background to something less aggressive than black +xsetroot -solid "#333333" -cursor_name left_ptr + +exec i3 |
