2015-03-03 11:29:54 -05:00
|
|
|
#!/bin/zsh
|
|
|
|
if [ "$1" = "lock" ];then
|
2015-07-22 16:28:39 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
declare -i ID
|
|
|
|
ID=`xinput list | grep -Eo 'TouchPad\s*id\=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}'`
|
|
|
|
declare -i STATE
|
|
|
|
STATE=`xinput list-props $ID|grep 'Device Enabled'|awk '{print $4}'`
|
|
|
|
if [ $STATE -eq 1 ];then
|
|
|
|
xinput disable $ID
|
|
|
|
echo "Touchpad disabled."
|
|
|
|
else
|
|
|
|
xinput enable $ID
|
|
|
|
echo "Touchpad enabled."
|
|
|
|
fi
|
2015-03-03 11:29:54 -05:00
|
|
|
fi
|
|
|
|
if [ "$1" = "pass" ];then
|
2015-09-30 19:01:42 -04:00
|
|
|
pass -c $(ls ~/.password-store/*/*|cut -b-37 --complement|rofi -dmenu|sed -e 's/\.gpg//')
|
2015-03-03 11:29:54 -05:00
|
|
|
fi
|
|
|
|
if [ "$1" = "screensaver" ];then
|
|
|
|
cat /tmp/noss||i3lock -di `shuf -n1 -e ~/.i3/wall/*`
|
|
|
|
fi
|
|
|
|
if [ "$1" = "wall" ];then
|
|
|
|
#if [[ -d ~/.i3/wallOM ]];then feh --bg-scale "`shuf -n1 -e ~/.i3/wallOM/*`";else feh --bg-scale "`shuf -n1 -e ~/.i3/wall/*`";fi;
|
2016-02-05 00:18:49 -05:00
|
|
|
#feh --bg-scale "$(shuf -n1 -e ~/.i3/wallOM/*)"
|
2016-08-18 15:47:09 -04:00
|
|
|
#feh --bg-scale ~/.i3/image.png
|
2016-09-09 12:01:04 -04:00
|
|
|
feh --bg-scale $(shuf -n1 <(realpath /home/stonewareslord/sync/wallpaper/$(hostname)))
|
2015-03-03 11:29:54 -05:00
|
|
|
fi
|
2015-04-27 08:21:16 -04:00
|
|
|
if [ "$1" = "swap" ];then
|
|
|
|
python << EOF
|
|
|
|
import i3
|
|
|
|
swap = [output for output in i3.get_outputs() if output['active']]
|
|
|
|
if len(swap) == 2:
|
|
|
|
for output in swap:
|
|
|
|
i3.workspace(output['current_workspace'])
|
|
|
|
i3.command('move', 'workspace to output right')
|
|
|
|
EOF
|
|
|
|
fi
|
2015-06-23 20:26:25 -04:00
|
|
|
if [ "$1" = "boot" ];then
|
2016-08-01 18:36:24 -04:00
|
|
|
test -f ~/.screenlayout/default.sh && ~/.screenlayout/default.sh
|
2015-06-23 20:26:25 -04:00
|
|
|
/usr/bin/xset -b
|
|
|
|
/usr/bin/xset +fp /usr/share/fonts/X11/misc
|
|
|
|
/usr/bin/xset +fp /usr/share/fonts/X11/Type1
|
|
|
|
/usr/bin/xset +fp built-ins
|
2015-07-16 16:51:57 -04:00
|
|
|
/usr/bin/xset s off
|
|
|
|
/usr/bin/xset -dpms
|
2016-09-15 23:35:17 -04:00
|
|
|
# This will segfault and ruin your day
|
|
|
|
#/usr/bin/urxvtd -q -f -o
|
2016-08-18 15:47:09 -04:00
|
|
|
if [ "$(hostname)" = "MMLin" ]; then
|
|
|
|
xrandr --output HDMI1 --primary
|
2016-09-09 12:01:04 -04:00
|
|
|
xmodmap <(echo pointer = 3 2 1)
|
2016-08-18 15:47:09 -04:00
|
|
|
elif [ "$(hostname)" = "G2" ]; then
|
|
|
|
#TODO: Figure out what the display is called
|
2016-09-15 23:35:17 -04:00
|
|
|
xrandr --output eDP1 --primary
|
2016-09-09 12:01:04 -04:00
|
|
|
xmodmap <(echo pointer = 1 2 3)
|
2016-08-18 15:47:09 -04:00
|
|
|
fi
|
|
|
|
feh --bg-scale $(shuf -n1 <(realpath /home/stonewareslord/owncloud/wallpaper/$(hostname)))
|
2016-08-09 18:22:16 -04:00
|
|
|
xinput --set-prop 'Logitech USB Optical Mouse' 'Device Accel Constant Deceleration' 3
|
2016-08-01 18:36:24 -04:00
|
|
|
$(which ck-launch-session 2>/dev/null) $(which i3)
|
2015-06-23 20:26:25 -04:00
|
|
|
fi
|
2016-07-01 13:47:08 -04:00
|
|
|
if [ "$1" = "screen-lock" ];then
|
|
|
|
revert(){
|
|
|
|
xset dpms 0 0 0
|
|
|
|
}
|
|
|
|
trap revert SIGHUP SIGINT SIGTERM
|
|
|
|
xset +dpms dpms 5 5 5
|
|
|
|
slock
|
|
|
|
revert
|
|
|
|
fi
|
2016-09-02 00:27:36 -04:00
|
|
|
if [ "$1" = "paste" ]; then
|
|
|
|
DISPLAY=:0.0 xdotool type --clearmodifiers --file <(xsel)
|
|
|
|
fi
|
2017-04-30 13:14:50 -04:00
|
|
|
if [ "$1" = "ping" ]; then
|
|
|
|
shift
|
|
|
|
# Return code
|
|
|
|
local RET=0
|
|
|
|
# nc has some intense divergence. netcat6 has no -z, but netcat has no -x
|
|
|
|
# -w3: 3 second timeout
|
|
|
|
# -4 : ipv4 only
|
|
|
|
# check if nc has -z
|
|
|
|
if nc -h |& grep -q -- -z; then
|
|
|
|
nc -w 1 -z4 "$1" "$2" >& /dev/null && RET=1
|
|
|
|
# check if nc has --transfer (-x)
|
|
|
|
elif nc -h |& grep -q -- --transfer; then
|
|
|
|
nc -w 1 -4 "$1" "$2" -x </dev/null >& /dev/null && RET=1
|
|
|
|
fi
|
|
|
|
echo $RET
|
|
|
|
fi
|
2016-09-20 13:23:08 -04:00
|
|
|
if [ "$1" = "ip" ]; then
|
|
|
|
shift
|
|
|
|
local RET=0
|
|
|
|
if [ "$(hostname)" = "MMLin" ]; then
|
|
|
|
if grep -q "$1" < <(ifconfig enp2s0f0); then
|
|
|
|
RET=1
|
|
|
|
fi
|
|
|
|
elif [ "$(hostname)" = "G2" ]; then
|
|
|
|
if grep -q "$1" < <(ifconfig enp1s0;ifconfig wlp2s0); then
|
|
|
|
RET=1
|
|
|
|
fi
|
2016-09-27 13:48:54 -04:00
|
|
|
elif [ "$(hostname)" = "SGen" ]; then
|
|
|
|
if grep -q "$1" < <(ifconfig enp0s25); then
|
|
|
|
RET=1
|
|
|
|
fi
|
2016-09-20 13:23:08 -04:00
|
|
|
fi
|
|
|
|
echo $RET
|
|
|
|
fi
|
2016-11-13 02:17:55 -05:00
|
|
|
if [ "$1" = "copy" ]; then
|
|
|
|
(printf '-chegg ';xsel | perl -pe 's/[^a-zA-Z ]//g;chomp()') | xsel && notify-send "Copied" || notify-send "Error"
|
|
|
|
fi
|
2017-01-24 15:54:05 -05:00
|
|
|
if [ "$1" = "screenshot" ]; then
|
|
|
|
rm ~/last-photo/*(N)
|
|
|
|
DISPLAY=:0.0 xfce4-screenshooter -r -s ~/last-photo
|
2017-01-30 00:43:41 -05:00
|
|
|
cp ~/last-photo/* ~/Pictures
|
2017-01-24 15:54:05 -05:00
|
|
|
fi
|