mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 05:29:09 -07:00
Cleanup
This commit is contained in:
@@ -1,35 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -o errexit
|
||||
set -o nounset
|
||||
|
||||
if test -f /etc/apt/apt.conf.d/90-proxy ; then
|
||||
echo "Looks already setup."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cat >/etc/apt/proxy-detect <<'EOF'
|
||||
#!/bin/bash
|
||||
|
||||
PROXY=192.168.60.10:3142
|
||||
|
||||
if ! test -x /bin/nc ; then
|
||||
echo DIRECT
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if nc -w 2 -z ${PROXY/:/ } ; then
|
||||
echo ${PROXY}
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo DIRECT
|
||||
EOF
|
||||
|
||||
chmod 755 /etc/apt/proxy-detect
|
||||
|
||||
cat >/etc/apt/apt.conf.d/90-proxy <<'EOF'
|
||||
Acquire::http::Proxy-Auto-Detect "/etc/apt/proxy-detect";
|
||||
EOF
|
||||
|
||||
echo "Setup APT Proxying."
|
||||
@@ -1,5 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
apt-get install -y \
|
||||
i3 i3lock xss-lock rxvt-unicode-256color fonts-inconsolata scrot \
|
||||
xautolock xbacklight i3status dex libnotify-bin
|
||||
@@ -1,18 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -ue
|
||||
|
||||
cat >/usr/local/bin/x-resize <<"EOF"
|
||||
#!/bin/sh
|
||||
PATH=/usr/bin:/bin:/usr/local/bin
|
||||
desktopuser=$(/bin/ps -ef | /bin/grep -oP '^\w+ (?=.*vdagent( |$))') || exit 0
|
||||
export DISPLAY=:0
|
||||
export XAUTHORITY=$(eval echo "~$desktopuser")/.Xauthority
|
||||
/usr/bin/xrandr --output $(/usr/bin/xrandr | awk '/ connected/{print $1; exit; }') --auto
|
||||
EOF
|
||||
chmod 755 /usr/local/bin/x-resize
|
||||
|
||||
cat >/etc/udev/rules.d/50-resize.rules <<"EOF"
|
||||
ACTION=="change",KERNEL=="card0", SUBSYSTEM=="drm", RUN+="/usr/local/bin/x-resize"
|
||||
EOF
|
||||
chmod 644 /etc/udev/rules.d/50-resize.rules
|
||||
Reference in New Issue
Block a user