File tree 3 files changed +19
-1
lines changed 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 6
6
! /.gitconfig
7
7
! /.gitignore_global
8
8
9
+ ! /Makefile
10
+
9
11
! /README.md
10
12
! /License - MIT.md
11
13
Original file line number Diff line number Diff line change 4
4
# This is setup to display on dual 2560x1440 monitors, with the right-side
5
5
# monitor as primary. Adjust margin as necessary for other resolutions/setups.
6
6
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments