Skip to content

Commit 43c57a3

Browse files
committed
[make] Updating dotfiles (3 files).
1 parent 5a8e4f4 commit 43c57a3

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
!/.gitconfig
77
!/.gitignore_global
88

9+
!/Makefile
10+
911
!/README.md
1012
!/License - MIT.md
1113

.xmonad/bin/tray

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# This is setup to display on dual 2560x1440 monitors, with the right-side
55
# monitor as primary. Adjust margin as necessary for other resolutions/setups.
66

7-
stalonetray -i 12 --window-type normal --geometry 12x1+2368 --window-strut none --background black --icon-gravity NE
7+
stalonetray -i 12 --window-type normal --geometry 12x1+2368 --window-strut none --background black --icon-gravity NE --kludges force_icons_size

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FILES_AMOUNT = $(shell git status --short | wc -l)
2+
STATUS = $(shell if [ $(FILES_AMOUNT) -eq "1" ]; then echo "1 file"; else echo "$(FILES_AMOUNT) files"; fi)
3+
4+
all: stage status commit push
5+
6+
stage:
7+
git add --all .
8+
9+
status:
10+
git status --short
11+
12+
commit:
13+
git commit --quiet --message "[make] Updating dotfiles ($(STATUS))."
14+
15+
push:
16+
git push --quiet --force origin master

0 commit comments

Comments
 (0)