This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UTF-8 Characters 2500 to 2600 | |
| _0__1__2__3__4__5__6__7__8__9__a__b__c__d__e__f_ | |
| 2500 ─ ━ │ ┃ ┄ ┅ ┆ ┇ ┈ ┉ ┊ ┋ ┌ ┍ ┎ ┏ | |
| 2510 ┐ ┑ ┒ ┓ └ ┕ ┖ ┗ ┘ ┙ ┚ ┛ ├ ┝ ┞ ┟ | |
| 2520 ┠ ┡ ┢ ┣ ┤ ┥ ┦ ┧ ┨ ┩ ┪ ┫ ┬ ┭ ┮ ┯ | |
| 2530 ┰ ┱ ┲ ┳ ┴ ┵ ┶ ┷ ┸ ┹ ┺ ┻ ┼ ┽ ┾ ┿ | |
| 2540 ╀ ╁ ╂ ╃ ╄ ╅ ╆ ╇ ╈ ╉ ╊ ╋ ╌ ╍ ╎ ╏ | |
| 2550 ═ ║ ╒ ╓ ╔ ╕ ╖ ╗ ╘ ╙ ╚ ╛ ╜ ╝ ╞ ╟ | |
| 2560 ╠ ╡ ╢ ╣ ╤ ╥ ╦ ╧ ╨ ╩ ╪ ╫ ╬ ╭ ╮ ╯ | |
| 2570 ╰ ╱ ╲ ╳ ╴ ╵ ╶ ╷ ╸ ╹ ╺ ╻ ╼ ╽ ╾ ╿ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # run "sh setup.sh" | |
| # BACKUP BEFORE WIPE: | |
| # SSH keys | |
| # Fonts | |
| # Keychain passwords | |
| # files outside dropbox: downloads, documents, photos, photobooth | |
| # bash/zsh profile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @column-width: 120; | |
| @gutter-width: 20; | |
| .backgroundGrid{ | |
| visibility: visible; | |
| background-size: ((@column-width + @gutter-width) * 1px) 1px; | |
| background-image: repeating-linear-gradient(-90deg, cyan, cyan 1px, transparent 1px, transparent (@column-width * 1px)); | |
| position:absolute; | |
| height:100%; | |
| width:100%; |