my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

beeg changes

+6 -20
-15
.ashrc
··· 1 - #!/bin/sh 2 - 3 - paleta -r 4 - 5 - export PS1='-> ' 6 - export HISTFILESIZE=10000 7 - 8 - export CFLAGS='-march=native -pipe -O3 -fno-math-errno' 9 - export CXXFLAGS="$CFLAGS" 10 - export MAKEFLAGS='-j5' 11 - 12 - 13 - sudo() { 14 - su -c "$*" 15 - }
+2 -2
.config/aerc/accounts.conf
··· 1 1 [c3f] 2 2 source = imaps://j3s@mail.c3f.net:993 3 - source-cred-cmd = pass c3f 3 + source-cred-cmd = pash show c3f 4 4 outgoing = smtp+plain://j3s@mail.c3f.net:587 5 - outgoing-cred-cmd = pass c3f 5 + outgoing-cred-cmd = pash show c3f 6 6 default = INBOX 7 7 smtp-starttls = yes 8 8 from = jes <j3s@c3f.net>
+1 -1
.profile
··· 4 4 alias vi=nvim 5 5 alias startx='ssh-agent startx' 6 6 7 - export ENV=~/.ashrc 7 + export ENV=~/.shinit 8 8 9 9 read -rp "start X?" && [ -z "$DISPLAY" ] && { 10 10 export DISPLAY=:0
+1 -2
.ssh/config
··· 9 9 Port 3215 10 10 11 11 Host baikal 12 - Hostname 97.127.122.154 12 + Hostname 69.61.110.118 13 13 User cyberian 14 - Port 4999
+2
bin/short-pwd
··· 1 1 #!/bin/sh 2 + # 3 + # /s/h/o/rtness 2 4 3 5 term=$(printf "$PWD" | sed -E 's|(\.?[^/])([^/]+)\/|\1/|g') 4 6