Skip to content

Commit c8871b2

Browse files
committed
Initial commit
0 parents  commit c8871b2

28 files changed

+1367
-0
lines changed

.gitignore

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
.DS_Store
2+
3+
# Xcode
4+
#
5+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
6+
7+
## Build generated
8+
build/
9+
DerivedData/
10+
11+
## Various settings
12+
*.pbxuser
13+
!default.pbxuser
14+
*.mode1v3
15+
!default.mode1v3
16+
*.mode2v3
17+
!default.mode2v3
18+
*.perspectivev3
19+
!default.perspectivev3
20+
xcuserdata/
21+
22+
## Other
23+
*.moved-aside
24+
*.xccheckout
25+
*.xcscmblueprint
26+
27+
## Obj-C/Swift specific
28+
*.hmap
29+
*.ipa
30+
*.dSYM.zip
31+
*.dSYM
32+
33+
## Playgrounds
34+
timeline.xctimeline
35+
playground.xcworkspace
36+
37+
# Swift Package Manager
38+
#
39+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
40+
# Packages/
41+
# Package.pins
42+
# Package.resolved
43+
.build/
44+
45+
# CocoaPods
46+
#
47+
# We recommend against adding the Pods directory to your .gitignore. However
48+
# you should judge for yourself, the pros and cons are mentioned at:
49+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
50+
#
51+
# Pods/
52+
53+
# Carthage
54+
#
55+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
56+
# Carthage/Checkouts
57+
58+
Carthage/Build
59+
60+
# fastlane
61+
#
62+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
63+
# screenshots whenever they are needed.
64+
# For more information about the recommended setup visit:
65+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
66+
67+
fastlane/report.xml
68+
fastlane/Preview.html
69+
fastlane/screenshots
70+
fastlane/test_output

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Shrug Control Strip
2+
3+
Adds a global touchbar button for inserting `¯\\_(ツ)_/¯` in any app
4+

0 commit comments

Comments
 (0)