Open your terminal.
In the root directory run the command:
sudo nano /etc/bluetooth/main.conf
I don't encourage you spending all your time on social media or keeping the notifs on if you're working on something serious. I don't do that personally. Sharing my knowledge on social media is a necessity as I don't have my platform right now, but it also vies for your attention all the time which is against productivity.
Therefore, If you want to know when a newsletter is out, or a podcast episode, or a live session is scheduled, this is the one place. Just join the page and switch ON the notifs for this one page.
I like the fact that in Telegram you can control the notifs at page level on your phone.
| [{ | |
| "image": "https://42f2671d685f51e10fc6-b9fcecea3e50b3b59bdc28dead054ebc.ssl.cf5.rackcdn.com/illustrations/making_art_759c.svg", | |
| "title": "Making art", | |
| "tags": "creative, painting, woman, art" | |
| }, { | |
| "image": "https://42f2671d685f51e10fc6-b9fcecea3e50b3b59bdc28dead054ebc.ssl.cf5.rackcdn.com/illustrations/quitting_time_dm8t.svg", | |
| "title": "Quitting time", | |
| "tags": "work, office, break, man, coffee, employee" | |
| }, { | |
| "image": "https://42f2671d685f51e10fc6-b9fcecea3e50b3b59bdc28dead054ebc.ssl.cf5.rackcdn.com/illustrations/user_flow_vr6w.svg", |
| # Year Progress | |
| export LENGTH=20; | |
| function GET_PERCENTAGE { | |
| local CURRENT_YEAR=$(date +%Y); | |
| if [ $((CURRENT_YEAR % 400)) -eq 0 ]; then | |
| local TOTAL_DAYS=366; | |
| elif [ $((CURRENT_YEAR % 100)) -eq 0 ]; then | |
| local TOTAL_DAYS=365; | |
| elif [ $((CURRENT_YEAR % 4)) -eq 0 ]; then |
In order of first appearance in The Morning Paper.
| #!/usr/bin/python | |
| from subprocess import Popen, PIPE | |
| import smtplib | |
| from socket import gaierror | |
| import string | |
| # This script attepts to retrieve the IP address of a specified interface. | |
| # If successful it then emails the retrieved IP to a specified email address | |
| # FILL OUT THE VALUES BETWEEN THE COMMENT BLOCKS |