├── README.md └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | # i3-utils 2 | 3 | A few repositories for a minimalistic [i3](https://github.com/i3/i3) setup. 4 | 5 | ## i3-utils-bin 6 | 7 | **[i3-utils-bin](https://github.com/cytopia/i3-utils-bin)** provides basic system and X tools for i3. 8 | 9 | ## i3-utils-systemd 10 | 11 | **[i3-utils-systemd](https://github.com/cytopia/i3-utils-systemd)** provides basic deskop environment features like notebook-lid-close actions as well as an improved suspend action. 12 | 13 | ## i3blocks-modules 14 | 15 | **[i3blocks-modules](https://github.com/cytopia/i3blocks-modules)** provides highly configurable [i3blocks](https://github.com/vivien/i3blocks) modules with placeholders, conditions, regexes, thresholds, colors and custom markup. 16 | 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Note: 2 | # To effectively apply the changes you will have 3 | # to re-index the git index (if there are already 4 | # commited files) 5 | # 6 | # $ git rm -r --cached . 7 | # $ git add . 8 | # $ git commit -m ".gitignore index rebuild" 9 | # 10 | 11 | 12 | ###################################### 13 | # CUSTOM 14 | ###################################### 15 | 16 | # Keep folders 17 | !.keepme 18 | build/ 19 | 20 | ###################################### 21 | # GENERIC 22 | ###################################### 23 | 24 | ###### std ###### 25 | .lock 26 | *.log 27 | 28 | ###### patches/diffs ###### 29 | *.patch 30 | *.diff 31 | *.orig 32 | *.rej 33 | 34 | ###################################### 35 | # Operating Systems 36 | ###################################### 37 | 38 | ###### OSX ###### 39 | ._* 40 | .DS* 41 | .Spotlight-V100 42 | .Trashes 43 | 44 | ###### Windows ###### 45 | Thumbs.db 46 | ehthumbs.db 47 | Desktop.ini 48 | $RECYCLE.BIN/ 49 | *.lnk 50 | *.shortcut 51 | 52 | ###################################### 53 | # Editors 54 | ###################################### 55 | 56 | ###### Sublime ###### 57 | *.sublime-workspace 58 | *.sublime-project 59 | 60 | ###### Eclipse ###### 61 | .classpath 62 | .buildpath 63 | .project 64 | .settings/ 65 | 66 | ###### Netbeans ###### 67 | /nbproject/ 68 | 69 | ###### Intellij IDE ###### 70 | .idea/ 71 | .idea_modules/ 72 | 73 | ###### vim ###### 74 | *.swp 75 | *.swo 76 | *.swn 77 | *.swm 78 | *~ 79 | 80 | ###### TextMate ###### 81 | .tm_properties 82 | *.tmproj 83 | 84 | ###### BBEdit ###### 85 | *.bbprojectd 86 | *.bbproject 87 | --------------------------------------------------------------------------------