From 202459ea831348792310121f47ac087112403b75 Mon Sep 17 00:00:00 2001 From: Mathew Guest Date: Sat, 31 Aug 2024 04:37:31 -0600 Subject: [PATCH] build: bashrc for systemd --user and dbus --- .bashrc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .bashrc diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..45bf158 --- /dev/null +++ b/.bashrc @@ -0,0 +1,16 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +alias grep='grep --color=auto' +PS1='[\u@\h \W]\$ ' + +# export XDG_RUNTIME_DIR=$HOME/.docker/run +export XDG_RUNTIME_DIR=/run/user/$(id -u gitea-runner) +export PATH=/home/gitea-runner/bin:$PATH + +export DOCKER_HOST=unix:///var/run/user/1013/docker.sock