An unintelligent solution for finding the optimum level of blue light filtering for your viewing comfort.
Firstly get the daemon going:
redshift &
If you don't like what you see reset the adjustment:
redshift -x
| #!/bin/bash | |
| # A bash script for launching 'Shtisel' in Netflix | |
| # By: Daniel Rosehill / DanielRosehill.co.il | |
| # | |
| # Call arandr script to pipe output to HDMI (TV) | |
| /bin/bash /home/daniel/TV_only.sh | |
| # Unmuting volume and then setting it to 100% | |
| amixer sset Master unmute | |
| amixset sset Master 100% | |
| # Open 'Shtisel' series page in Netflix |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- Do not edit this file, it will be overwritten on install. | |
| Copy the file to $HOME/.config/openbox/ instead. --> | |
| <openbox_config xmlns="http://openbox.org/3.4/rc"> | |
| <resistance> | |
| <strength>10</strength> | |
| <screen_edge_strength>20</screen_edge_strength> | |
| </resistance> | |
| <focus> |
| [redshift] | |
| temp-day=4500 | |
| temp-night=3000 | |
| gamma=0.8 | |
| adjustment-method=randr | |
| location-provider=manual | |
| [manual] | |
| lat=31.79 | |
| lon=35.21 |
An unintelligent solution for finding the optimum level of blue light filtering for your viewing comfort.
Firstly get the daemon going:
redshift &
If you don't like what you see reset the adjustment:
redshift -x
| Standard | |
| rsync -e ssh user@host:/files/ /home/user/backup | |
| With custom port | |
| rsync -a -e "ssh -p 14022" user@host:/backup/dir /local/dir | |
| Rsync doesn't do remote <-> remote. For this, take a look at rclone |
| # Main site backup | |
| # Files | |
| rsync -arvvvz --progress -e 'ssh -p 45454' [email protected]:/home/cpaneluser/public_html/ /volume1/HostingBackups/mysite/ | |
| # MySQL | |
| rsync -arvvvz --stats --progress --remove-source-files -e 'ssh -p 45454' [email protected]:/home/user/backup /volume1/HostingBackups/mysite/ |
| sudo rsync -avz MyBackup/ [email protected]::SharedFolder/MyBackup | |
| Syntax notes: | |
| Two colons after local IP and before shared folder name |
| <div class="post-byline"> | |
| <span class="post-date"> | |
| <?php | |
| $date = get_the_date(); | |
| printf( esc_html_x( 'Published %s', 'Published DATE', 'chosen' ), $date ); | |
| ?> | |
| </span><br/> | |
| IN <?php the_field('pubtitle'); ?> | |
| <br/> | |
| <a href="<?php the_field('publishurl'); ?>" target="_blank">ORIGINAL LINK | <a href="<?php the_field('backupcopy'); ?>"target="_blank">LOCAL BACKUP</a> </a> |
| mysqldump --add-drop-table -u db_username -p db_name > mybackup.sql |