Compare commits

...

7 Commits
v1.7.5 ... main

Author SHA1 Message Date
PandaCoderPL 88580ed5ce
Add alias with proxy for PIP to Bash config
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
2021-11-28 22:30:13 +00:00
PandaCoderPL 579939c2b0
Add Polish Readme
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
2021-11-27 02:13:02 +00:00
PandaCoderPL 3e0e04d538
Add missing date to Changelog
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
2021-11-26 20:52:41 +00:00
PandaCoderPL c5dd948f61
Changed names of some sections into questions in Readme
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
2021-11-26 20:22:02 +00:00
PandaCoderPL 797609a1d3
Add proxy for Git protocol to Git config and git-proxy script
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
2021-11-25 23:09:00 +00:00
PandaCoderPL 095d4d3969
Change style of some aliases in Git config
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
2021-11-23 22:12:37 +00:00
PandaCoderPL 6dce6e8749
Add code to include secret config in Bash config
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
2021-11-22 17:16:50 +00:00
7 changed files with 102 additions and 12 deletions

View File

@ -4,6 +4,35 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.8.1] - 2021-11-28
### Added
- Alias with proxy for PIP to [Bash Config](home/.bashrc)
## [1.8.0] - 2021-11-27
### Added
- [Polish Readme](README.pl.md).
## [1.7.10] - 2021-11-26
### Added
- Missing date to [Changelog](CHANGELOG.md)
## [1.7.9] - 2021-11-26
### Changed
- Names of some sections into questions in [Readme](README.md)
## [1.7.8] - 2021-11-25
### Added
- Proxy for Git protocol to [Git Config](home/.config/git/config)
- git-proxy script.
## [1.7.7] - 2021-11-23
### Changed
- Style of some aliases in [Git Config](home/.config/git/config)
## [1.7.6] - 2021-11-22
### Added
- Code to include secret config in [Bash Config](home/.bashrc)
## [1.7.5] - 2021-11-22
### Added
- Timeout to SSH agent in [Bash Config](home/.bashrc)

View File

@ -1,3 +1,5 @@
[Polski](README.pl.md)
# dotfiles
Repository with my dotfiles.
@ -5,11 +7,11 @@ Repository with my dotfiles.
## Contents
* [Configuration Files](#configuration-files)
* [Downloading](#downloading)
* [How to download?](#how-to-download)
* [Using Git](#using-git)
* [Using Curl](#using-curl)
* [Using Wget](#using-wget)
* [Installation](#installation)
* [How to install?](#how-to-install)
* [Contact](#contact)
* [License](#license)
@ -25,7 +27,7 @@ Repository with my dotfiles.
* [Tor](https://www.torproject.org/) - [torrc](usr/etc/tor/torrc)
* [Vim](https://www.vim.org/) - [.vimrc](home/.vimrc)
## Downloading
## How to download?
### Using Git
@ -39,7 +41,7 @@ Repository with my dotfiles.
wget -O - https://codeberg.org/PandaCoderPL/dotfiles/archive/main.tar.gz | tar -xzf -
## Installation
## How to install?
rsync -qa home/ ~/

54
README.pl.md Normal file
View File

@ -0,0 +1,54 @@
[English](README.md)
# dotfiles
Repozytorium z moimi plikami konfiguracyjnymi.
## Contents
* [Pliki konfiguracyjne](#pliki-konfiguracyjne)
* [Jak pobrać?](#jak-pobrać)
* [Używając Git](#używając-git)
* [Używając Curl](#używając-curl)
* [Używając Wget](#używając-wget)
* [Jak zainstalować?](#jak-zainstalować)
* [Kontakt](#kontakt)
* [Licencja](#licencja)
## Pliki konfiguracyjne
* [Bash](http://www.gnu.org/software/bash/) - [
.bashrc](home/.bashrc)
* [Git](https://git-scm.com/) - [config](home/.config/git/config)
* [I2PD](https://i2pd.website/) - [i2pd.conf](home/.i2pd/i2pd.conf)
* [SSH](https://www.openssh.com/) - [config](home/.ssh/config)
* [Termux](https://termux.com/) - [termux.properties](home/.termux/termux.properties)
* [Tmux](https://github.com/tmux/tmux) - [.tmux.conf](home/.tmux.conf)
* [Tor](https://www.torproject.org/) - [torrc](usr/etc/tor/torrc)
* [Vim](https://www.vim.org/) - [.vimrc](home/.vimrc)
## Jak pobrać?
### Używając Git
git clone --depth=1 git://codeberg.org/PandaCoderPL/dotfiles.git
### Używając Curl
curl -L https://codeberg.org/PandaCoderPL/dotfiles/archive/main.tar.gz | tar -xzf -
### Używając Wget
wget -O - https://codeberg.org/PandaCoderPL/dotfiles/archive/main.tar.gz | tar -xzf -
## Jak zainstalować?
rsync -qa home/ ~/
## Kontakt
[Kontakt](https://codeberg.org/PandaCoderPL/PandaCoderPL#contact)
## Licencja
[MIT](LICENSE)

View File

@ -1 +1 @@
1.7.5
1.8.1

View File

@ -26,3 +26,6 @@ alias lh='l --human-readable'
alias ll='lh -l'
alias la='ll --all'
alias paste='termux-clipboard-paste'
alias pip='pip --proxy "socks5h://${RANDOM}:${RANDOM}@127.0.0.1:9050"'
source ~/.bashrc-secret

View File

@ -3,8 +3,8 @@
ae = a -e
ba = branch
bach = "!f() { \
git ba \"$1\" && \
git ch \"$1\"; \
git ba \"$1\" \
&& git ch \"$1\"; \
}; f"
bd = ba -d
bfd = ba -D
@ -19,13 +19,13 @@
}; f"
cota = "!f() { \
local version=\"v$(cat VERSION)\"; \
git co \"$1\" && \
git ta \"${version}\"; \
git co \"$1\" \
&& git ta \"${version}\"; \
}; f"
fu = "!f() { \
git fetch upstream && \
git ch master && \
git rebase upstream/master; \
git fetch upstream \
&& git ch master \
&& git rebase upstream/master; \
}; f"
fup = !git fu && git pat
p = push
@ -50,6 +50,7 @@
gpgSign = true
[core]
editor = vim
gitProxy = git-proxy
pager = less
[include]
path = ~/.config/git/config-secret

1
usr/bin/git-proxy Executable file
View File

@ -0,0 +1 @@
nc -X 5 -x 127.0.0.1:9050 $1 $2