Overview
Comment: | Create "Keyboard Layouts" directory |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fc9dc3c0b5e81b32b5949352fbae3543 |
User & Date: | js 2023-04-01 11:12:57 |
Context
2023-04-01
| ||
11:15 | Create misc directory for non-config files check-in: 5911601093 user: js tags: trunk | |
11:12 | Create "Keyboard Layouts" directory check-in: fc9dc3c0b5 user: js tags: trunk | |
11:11 | Move gpg.conf into gnupg directory check-in: 935ed87696 user: js tags: trunk | |
Changes
Name change from eu_US (ANSI).keylayout to Keyboard Layouts/eu_US (ANSI).keylayout.
︙ | ︙ |
Name change from eu_US.keylayout to Keyboard Layouts/eu_US.keylayout.
︙ | ︙ |
Changes to setup.sh.
︙ | ︙ | |||
56 57 58 59 60 61 62 | have zsh && link_file zshrc .zshrc if have ssh; then mkdir -p $HOME/.ssh link_file ssh_config .ssh/config ../ fi if test x"$(uname -s)" = x"Darwin"; then | | | | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | have zsh && link_file zshrc .zshrc if have ssh; then mkdir -p $HOME/.ssh link_file ssh_config .ssh/config ../ fi if test x"$(uname -s)" = x"Darwin"; then for i in "Keyboard Layouts/*"; do dest="$HOME/Library/$i" # This does not like being symlinked… if [ ! -e "$dest" ]; then echo "Hardlinking $i -> $dest" ln "$i" "$dest" else echo "$dest already exists, skipping…" fi |
︙ | ︙ |