alpha
Login
or
Join now
j3s.sh
/
dotfiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
my dotz
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
beeg changes
author
j3s
date
6 years ago
(Mar 6, 2020, 11:15 PM UTC)
commit
2657104f
2657104ff3a7c507e6a95f6e199e6d0e83aed870
parent
b0cc0c05
b0cc0c05874174d9bf59024e6388635d79d4e9b0
+6
-20
5 changed files
Expand all
Collapse all
Unified
Split
.ashrc
.config
aerc
accounts.conf
.profile
.ssh
config
bin
short-pwd
-15
.ashrc
Reviewed
···
1
1
-
#!/bin/sh
2
2
-
3
3
-
paleta -r
4
4
-
5
5
-
export PS1='-> '
6
6
-
export HISTFILESIZE=10000
7
7
-
8
8
-
export CFLAGS='-march=native -pipe -O3 -fno-math-errno'
9
9
-
export CXXFLAGS="$CFLAGS"
10
10
-
export MAKEFLAGS='-j5'
11
11
-
12
12
-
13
13
-
sudo() {
14
14
-
su -c "$*"
15
15
-
}
+2
-2
.config/aerc/accounts.conf
Reviewed
···
1
1
[c3f]
2
2
source = imaps://j3s@mail.c3f.net:993
3
3
-
source-cred-cmd = pass c3f
3
3
+
source-cred-cmd = pash show c3f
4
4
outgoing = smtp+plain://j3s@mail.c3f.net:587
5
5
-
outgoing-cred-cmd = pass c3f
5
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
Reviewed
···
4
4
alias vi=nvim
5
5
alias startx='ssh-agent startx'
6
6
7
7
-
export ENV=~/.ashrc
7
7
+
export ENV=~/.shinit
8
8
9
9
read -rp "start X?" && [ -z "$DISPLAY" ] && {
10
10
export DISPLAY=:0
+1
-2
.ssh/config
Reviewed
···
9
9
Port 3215
10
10
11
11
Host baikal
12
12
-
Hostname 97.127.122.154
12
12
+
Hostname 69.61.110.118
13
13
User cyberian
14
14
-
Port 4999
+2
bin/short-pwd
Reviewed
···
1
1
#!/bin/sh
2
2
+
#
3
3
+
# /s/h/o/rtness
2
4
3
5
term=$(printf "$PWD" | sed -E 's|(\.?[^/])([^/]+)\/|\1/|g')
4
6