diff --git a/assets/css/style.css b/assets/css/style.css index 736091d..a281835 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -6,10 +6,16 @@ body { background: #84DCCF; text-align: center; box-shadow: 0 0 7px #555; + margin-bottom: 2.0rem; } .title { - padding-top: 2.5rem; + padding-top: 1rem; + font-size: 5rem; +} +.title a { + color: black; + text-decoration: none; } .tagline { @@ -25,3 +31,7 @@ body { color: #cc0000; font-size: 2rem; } + +code { + white-space: normal; +} diff --git a/index.html b/index.html index 9e52846..4add6b8 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ -
- Notify is a Bash function / alias that will send a notification to a tab in your browser when it's ran: + Notica is a Bash function / alias that will send a notification to a tab in your browser when it's ran:
$ make all; notify Code is done compiling!
$ make all; notica Code is done compiling!
- This will wait until the first command completes before running Notify. That way you can go do other things while your long task runs. + This will wait until the first command completes before running Notica. That way you can go do other things while your long task runs. Then you will recieve a notification.
Curl is required to use Notify.
+Curl is required to use Notica.
Add this line to your .bashrc
file:
- notify() { curl --data "$@" https://notify.com/{id} }
+ notica() { curl --data "$@" https://notica.us/{id} }
Source your .bashrc
file to apply the changes:
$ source .bashrc
Now, open this link in a new tab:
- +All done! Bookmark that link so you can find it later since it's unique to you.
- $ echo 'notify() { curl --data "$@" https://notify.com/{id} }' >> ~/.bashrc && source ~/.bashrc
+ $ echo 'notica() { curl --data "$@" https://notica.us/{id} }' >> ~/.bashrc && source ~/.bashrc