-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.chezmoiignore.tmpl
53 lines (49 loc) · 1.22 KB
/
.chezmoiignore.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
**/README*
**/LICENSE
# Note: external binaries included by .chezmoiexternals* should
# not be ignored by this file,
# instead their template should result to an empty file/entry
# on systems where the binary should not be installed
# (empty files are not added by chezmoi)
{{/* ignore these if no graphical environment is installed */}}
{{ if .headless }}
.local/bin/termfg
.local/bin/openbrowser
.local/bin/screenshot
.local/bin/screensvr*
.local/bin/setxkblayout
.local/bin/pwr*
.local/bin/qutebrowser-clean
.local/bin/i3-*
.local/bin/rofi-*
.local/libexec/gogh
.local/libexec/gogh/**
.fonts
.fonts/**
.config/i3
.config/i3/**
.config/dunst
.config/dunst/**
.config/rofi
.config/rofi/**
.config/qutebrowser
.config/qutebrowser/**
.var
.var/**
.xsession
.xinitrc
{{ end }}
# Prevent setting i3 session for remote desktop, if not installed
{{ if not (lookPath "i3") }}
.xsession
.xinitrc
{{ end }}
# Ignore symlinks which are used for AppImages,
# The underlying AppImages are architecture dependent,
# so don't create the symlinks for unsupport systems
# Also all AppImages are glibc dependent so make sure it is available
{{ if not .appimage }}
.local/bin/.AppImageRunner
.local/bin/tmux
.local/bin/vim
{{ end }}