diff --git a/Xresources.d/configure b/Xresources.d/configure index dadc9d7..b22a5f0 100755 --- a/Xresources.d/configure +++ b/Xresources.d/configure @@ -1,10 +1,11 @@ #!/usr/bin/env bash -wget https://raw.githubusercontent.com/solarized/xresources/master/Xresources.light -O solarized.light -wget https://raw.githubusercontent.com/solarized/xresources/master/Xresources.dark -O solarized.dark +wget "https://raw.githubusercontent.com/solarized/xresources/master/Xresources.light" -O solarized.light +wget "https://raw.githubusercontent.com/solarized/xresources/master/Xresources.dark" -O solarized.dark mkdir -p $HOME/.local/share/fonts echo $(for i in "" "%20Bold" "%20Oblique" "%20Bold%20Oblique"; do cd $HOME/.local/share/fonts wget http://raw.githubusercontent.com/powerline/fonts/master/DejaVuSansMono/DejaVu%20Sans%20Mono$i%20for%20Powerline.ttf done) +wget "https://aur.archlinux.org/cgit/aur.git/plain/icons.ttf?h=ttf-font-icons" -O $HOME/.local/share/fonts/icons.ttf diff --git a/config/i3/sshmenu b/config/i3/sshmenu index 9601712..00cf7fa 100755 --- a/config/i3/sshmenu +++ b/config/i3/sshmenu @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash if [ "$1" == 'root' ]; then a=" (root)" b="sudo -E " diff --git a/scripts/debloc.sh b/scripts/debloc.sh index 99103b9..e243e70 100755 --- a/scripts/debloc.sh +++ b/scripts/debloc.sh @@ -25,8 +25,8 @@ mkdir -p $DEBLOC_ROOT &> /dev/null export PATH="$DEBLOC_ROOT/usr/bin:$DEBLOC_ROOT/usr/games/:$DEBLOC_ROOT/usr/lib/git-core:$PATH" export LIBRARY_PATH="$DEBLOC_LD:$LIBRARY_PATH" -export C_INCLUDE_PATH="$DEBLOC_ROOT/include:$C_INCLUDE_PATH" -export CPLUS_INCLUDE_PATH="$DEBLOC_ROOT/include:$CPLUS_INCLUDE_PATH" +export C_INCLUDE_PATH="$DEBLOC_ROOT/usr/include:$C_INCLUDE_PATH" +export CPLUS_INCLUDE_PATH="$DEBLOC_ROOT/usr/include:$CPLUS_INCLUDE_PATH" export LD_LIBRARY_PATH="$DEBLOC_LD:$LD_LIBRARY_PATH" export PYTHONPATH="$DEBLOC_ROOT/usr/lib/python3/dist-packages:$PYTHONPATH" export QT_QPA_PLATFORM_PLUGIN_PATH="$DEBLOC_ROOT/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms"