Compare commits

..

No commits in common. "a8eeb7f7f6c88b158fe946b8b699e8b2e78fed34" and "5aef81dac4caea20a1ad93e24a054f5ae63891e6" have entirely different histories.

4 changed files with 4 additions and 24 deletions

5
.gitignore vendored
View File

@ -243,7 +243,4 @@ Movies/
Music/ Music/
notes.org notes.org
.config/backup.log .config/backup.log
.config/gh/config.yml
.config/gh/hosts.yml
.local/state/gh/state.yml

View File

@ -6,6 +6,6 @@ sudo ebuildtester \
--update \ --update \
--unstable \ --unstable \
--rm \ --rm \
--portage-dir "$HOME/git/dev/gentoo" \ --portage-dir /home/yorune/git/dev/gentoo \
--overlay-dir "$HOME/git/dev/guru" \ --overlay-dir /home/yorune/git/dev/guru
--atom "$@" --atom "$@"

View File

@ -1,17 +0,0 @@
#!/bin/bash
docker stop "$(docker ps --all | grep -i ubuntu | awk '{print $1}')" > /dev/null
docker rm "$(docker ps --all | grep -i ubuntu | awk '{print $1}')" > /dev/null
docker pull jrei/systemd-ubuntu:latest
docker run \
-d \
-v $HOME/git/dev:/opt \
--tmpfs /tmp \
--tmpfs /run \
--tmpfs /run/lock \
--privileged \
-v /sys/fs/cgroup:/sys/fs/cgroup:ro \
jrei/systemd-ubuntu
container="$(docker ps --all | grep -i ubuntu | awk '{print $1}')"
sleep 15 && docker exec -it "$container" /bin/bash
docker stop "$container"
docker rm "$container"

2
.zshrc
View File

@ -89,7 +89,7 @@ alias gst="git status -s"
alias gdiff="git diff" alias gdiff="git diff"
alias gnew="git checkout -b" alias gnew="git checkout -b"
alias glog="git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches" alias glog="git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches"
alias gfg="(git checkout master; git checkout main) && git fetch upstream && git pull upstream master" alias gfg="git checkout master && git fetch upstream && git pull upstream master"
alias cal="cal -3" alias cal="cal -3"
alias code="vscodium-bin" alias code="vscodium-bin"
alias vpn="sudo /root/.local/bin/protonvpn c -f" alias vpn="sudo /root/.local/bin/protonvpn c -f"