diff options
| author | Mitsuo Tokumori <[email protected]> | 2025-07-03 13:30:00 +0900 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2025-07-03 13:30:55 +0900 |
| commit | e469a68155098e6b4a720359fdaa973f36347613 (patch) | |
| tree | d7334d953cedc922bfe39f29621e277514997026 | |
| parent | 6b9a5c00fe385338dd7fef20d3638abc1b20b419 (diff) | |
| download | dotfiles-e469a68155098e6b4a720359fdaa973f36347613.tar.gz dotfiles-e469a68155098e6b4a720359fdaa973f36347613.tar.bz2 dotfiles-e469a68155098e6b4a720359fdaa973f36347613.zip | |
Stop tracking snippets in git
It's not configuration, and I'm adding and changing them too frequently
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | linking_example.sh | 3 | ||||
| -rw-r--r-- | public/.local/share/dmenu/snippet/htmlEscape.js | 9 | ||||
| -rw-r--r-- | public/.local/share/dmenu/snippet/test.sh | 1 |
4 files changed, 5 insertions, 12 deletions
@@ -1,3 +1,3 @@ -./sensitive/ -./secret/ +private/ public/.config/gtk-3.0/bookmarks +public/.local/share/dmenu/snippet diff --git a/linking_example.sh b/linking_example.sh index ae0a6e4..4b700ec 100644 --- a/linking_example.sh +++ b/linking_example.sh @@ -5,6 +5,9 @@ # * `ln -sf` overwrites the destination files # # you can play with ln options (e.g., `ln -siv`) +# +# To find out which files link here: +# find ~ -type l -lname "/path/to/dotfiles" dotfiles=$HOME/mahcode/dotfiles/public dest=$HOME diff --git a/public/.local/share/dmenu/snippet/htmlEscape.js b/public/.local/share/dmenu/snippet/htmlEscape.js deleted file mode 100644 index f4a3673..0000000 --- a/public/.local/share/dmenu/snippet/htmlEscape.js +++ /dev/null @@ -1,9 +0,0 @@ -/* https://stackoverflow.com/questions/7381974/which-characters-need-to-be-escaped-in-html#7382028 */ -function htmlEscape(text) { - return String(text) - .replaceAll("&", "&") - .replaceAll("<", "<") - .replaceAll(">", ">") - .replaceAll('"', """) - .replaceAll("'", "'"); -} diff --git a/public/.local/share/dmenu/snippet/test.sh b/public/.local/share/dmenu/snippet/test.sh deleted file mode 100644 index fcadfe3..0000000 --- a/public/.local/share/dmenu/snippet/test.sh +++ /dev/null @@ -1 +0,0 @@ -[ 0 -eq 1 ] && echo True || echo False |
