summaryrefslogtreecommitdiff
path: root/Gentoo/root
diff options
context:
space:
mode:
Diffstat (limited to 'Gentoo/root')
-rw-r--r--Gentoo/root/.bashrc32
1 files changed, 32 insertions, 0 deletions
diff --git a/Gentoo/root/.bashrc b/Gentoo/root/.bashrc
new file mode 100644
index 0000000..4771ca7
--- /dev/null
+++ b/Gentoo/root/.bashrc
@@ -0,0 +1,32 @@
1# .bashrc
2
3# User specific aliases and functions
4
5PS1="[\[\033[01;32m\]\u\[\033[00m\]@\h \w]\\$ "; export PS1
6
7export HISTSIZE=10000
8export HISTCONTROL=ignorespace:erasedups
9shopt -s checkwinsize
10
11alias esync='/usr/bin/eix-sync'
12
13export PASSPHRASE="foo"
14
15alias fduplicity_regular='/usr/bin/duplicity full --name blackmore_regular_backup --include-filelist /mnt/edisk/Backups/duplicity/regular_backup.txt --exclude / --archive-dir /mnt/edisk/Backups/duplicity/archive --tempdir /mnt/edisk/Backups/duplicity/tmp --encrypt-sign-key DE0FFF2DD08D3B081361419A0072FA441022AD16 --log-file /var/log/duplicity.log --verbosity notice --volsize 500 / rsync://ssync@sagabox//mnt/cpool1/data/ssync/data/backups/Blackmore/'
16alias iduplicity_regular='/usr/bin/duplicity incremental --name blackmore_regular_backup --include-filelist /mnt/edisk/Backups/duplicity/regular_backup.txt --exclude / --archive-dir /mnt/edisk/Backups/duplicity/archive --tempdir /mnt/edisk/Backups/duplicity/tmp --encrypt-sign-key DE0FFF2DD08D3B081361419A0072FA441022AD16 --log-file /var/log/duplicity.log --verbosity notice --volsize 500 / rsync://ssync@sagabox//mnt/cpool1/data/ssync/data/backups/Blackmore/'
17
18alias fduplicity_remote='/usr/bin/duplicity full --name blackmore_remote_backup --include-filelist /mnt/edisk/Backups/duplicity/remote_backup.txt --exclude / --archive-dir /mnt/edisk/Backups/duplicity/archive --tempdir /mnt/edisk/Backups/duplicity/tmp --encrypt-sign-key DE0FFF2DD08D3B081361419A0072FA441022AD16 --log-file /var/log/duplicity.log --verbosity notice --volsize 500 / rsync://ssync@sagabox//mnt/cpool1/data/ssync/data/remote_backups/Blackmore/'
19alias iduplicity_remote='/usr/bin/duplicity incremental --name blackmore_remote_backup --include-filelist /mnt/edisk/Backups/duplicity/remote_backup.txt --exclude / --archive-dir /mnt/edisk/Backups/duplicity/archive --tempdir /mnt/edisk/Backups/duplicity/tmp --encrypt-sign-key DE0FFF2DD08D3B081361419A0072FA441022AD16 --log-file /var/log/duplicity.log --verbosity notice --volsize 500 / rsync://ssync@sagabox//mnt/cpool1/data/ssync/data/remote_backups/Blackmore/'
20
21alias dstatus='/usr/bin/duplicity collection-status --name blackmore_regular_backup --archive-dir /mnt/edisk/Backups/duplicity/archive --tempdir /mnt/edisk/Backups/duplicity/tmp --encrypt-sign-key DE0FFF2DD08D3B081361419A0072FA441022AD16 rsync://ssync@sagabox//mnt/cpool1/data/ssync/data/backups/Blackmore/'
22alias drstatus='/usr/bin/duplicity collection-status --name blackmore_remote_backup --archive-dir /mnt/edisk/Backups/duplicity/archive --tempdir /mnt/edisk/Backups/duplicity/tmp --encrypt-sign-key DE0FFF2DD08D3B081361419A0072FA441022AD16 rsync://ssync@sagabox//mnt/cpool1/data/ssync/data/remote_backups/Blackmore/'
23
24alias dremove='/usr/bin/duplicity remove-all-but-n-full 1 --name blackmore_regular_backup --archive-dir /mnt/edisk/Backups/duplicity/archive --tempdir /mnt/edisk/Backups/duplicity/tmp --encrypt-sign-key DE0FFF2DD08D3B081361419A0072FA441022AD16 rsync://ssync@sagabox//mnt/cpool1/data/ssync/data/backups/Blackmore/'
25alias drremove='/usr/bin/duplicity remove-all-but-n-full 1 --name blackmore_remote_backup --archive-dir /mnt/edisk/Backups/duplicity/archive --tempdir /mnt/edisk/Backups/duplicity/tmp --encrypt-sign-key DE0FFF2DD08D3B081361419A0072FA441022AD16 rsync://ssync@sagabox//mnt/cpool1/data/ssync/data/remote_backups/Blackmore/'
26
27alias youtube-dl='/usr/bin/youtube-dl -f best -o "%(title)s.%(ext)s"'
28
29# Source global definitions
30##if [ -f /etc/bashrc ]; then
31## . /etc/bashrc
32##fi