- basic setup
- auto-login on startup
- chromium
- shared user with google sync for bookmarks in chromium
- auto-start chromium with shared bookmark in fullscreen mode (
- setup synergy
- setup ssh tunnel for synergy (with restricted rights) (client:
ssh -f -N -L 24800:server-hostname:24800 server-hostname
) - share ssh with zeroconf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env zsh | |
# Initialize VPN | |
sudo vpnns up | |
sudo vpnns start_vpn | |
# Popcorn time! | |
sudo ip netns exec frootvpn sudo -u $USER popcorntime | |
# Cleanup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Snippetbucket, odoo backup for window platform | |
#SnippetBucket.com for Enterprise Business & Integrated Automation | |
#email: [email protected] | |
Here's the steps to do that on Windows 7: | |
Backup: | |
Step 1: cd into Postgres bin directory so you can run pg_dump.exe | |
command: $ cd \Program Files\PostgreSQL\9.3\bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
services: | |
unifi: | |
container_name: unifi | |
restart: unless-stopped | |
image: linuxserver/unifi | |
volumes: | |
- /srv/docker/unifi:/config | |
environment: | |
- PGID=0 |