1
0
Fork 0

Compare commits

...

4 Commits

Author SHA1 Message Date
urosm a88d42e23c update `.profile` 2024-01-15 01:42:24 +01:00
urosm 159aa485ac update `.bashrc` 2024-01-15 01:42:15 +01:00
urosm 6d410fda8e add `apache2` config 2024-01-15 01:07:07 +01:00
urosm c84cc73acb update `apt` config 2024-01-15 01:05:50 +01:00
5 changed files with 20 additions and 4 deletions

View File

@ -0,0 +1,7 @@
<VirtualHost *:80>
ServerName localhost
DocumentRoot /home/urosm/public_html/bavbavhaus.net
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

View File

@ -0,0 +1 @@
APT::Default-Release "/^testing(|-security)$/";

11
apt/sources.list 100644
View File

@ -0,0 +1,11 @@
deb http://deb.debian.org/debian/ testing main non-free-firmware
deb-src http://deb.debian.org/debian/ testing main non-free-firmware
deb http://security.debian.org/debian-security testing-security main non-free-firmware
deb-src http://security.debian.org/debian-security testing-security main non-free-firmware
deb http://deb.debian.org/debian/ unstable main non-free-firmware
deb-src http://deb.debian.org/debian/ unstable main non-free-firmware
deb http://deb.debian.org/debian/ experimental main non-free-firmware
deb-src http://deb.debian.org/debian/ experimental main non-free-firmware

1
bashrc
View File

@ -12,7 +12,6 @@ export HISTCONTROL=ignoredups:erasedups
export HISTSIZE=-1
export HISTFILESIZE=-1
shopt -s histappend
PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
# set the title to user@host:dir
PS1="\[\e]0;\u@\h:\w\a\]$PS1"

View File

@ -90,8 +90,6 @@ if [ "$(tty)" = "/dev/tty1" ] && command -v sway &>/dev/null; then
export VISUAL=nvim
export TERMINAL=footclient
export BROWSER=firefox
# ssh agent
eval $(ssh-agent)
# run sway
exec systemd-cat -t sway sway
exec sway
fi