summaryrefslogtreecommitdiffstats
path: root/.local/bin/i3cmds
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/i3cmds')
-rwxr-xr-x.local/bin/i3cmds/ddspawn19
-rwxr-xr-x.local/bin/i3cmds/dropdowncalc3
-rwxr-xr-x.local/bin/i3cmds/hover15
-rwxr-xr-x.local/bin/i3cmds/i3resize28
-rwxr-xr-x.local/bin/i3cmds/tmuxdd5
-rwxr-xr-x.local/bin/i3cmds/toggle-welcome10
6 files changed, 0 insertions, 80 deletions
diff --git a/.local/bin/i3cmds/ddspawn b/.local/bin/i3cmds/ddspawn
deleted file mode 100755
index d4a4034..0000000
--- a/.local/bin/i3cmds/ddspawn
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-# Toggle floating dropdown terminal in i3, or start if non-existing.
-# $1 is the script run in the terminal.
-# All other args are terminal settings.
-# Terminal names are in dropdown_* to allow easily setting i3 settings.
-
-[ -z "$1" ] && exit
-
-script=$1
-shift
-if xwininfo -tree -root | grep "(\"dropdown_$script\" ";
-then
- echo "Window detected."
- i3 "[instance=\"dropdown_$script\"] scratchpad show; [instance=\"dropdown_$script\"] move position center"
-else
- echo "Window not detected... spawning."
- i3 "exec --no-startup-id $TERMINAL -n dropdown_$script $@ -e $script"
-fi
diff --git a/.local/bin/i3cmds/dropdowncalc b/.local/bin/i3cmds/dropdowncalc
deleted file mode 100755
index f0615fd..0000000
--- a/.local/bin/i3cmds/dropdowncalc
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-ifinstalled bc && echo "Welcome to the Calculator." && bc -lq
diff --git a/.local/bin/i3cmds/hover b/.local/bin/i3cmds/hover
deleted file mode 100755
index a8a3e19..0000000
--- a/.local/bin/i3cmds/hover
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-[ -z "$1" ] && exit # If $1 is left, hovers in the bottom left, if right, the bottom right
-current=$(xdotool getwindowfocus)
-newwidth=$(($(xdotool getdisplaygeometry | awk '{print $2}') / 3))
-newheight=$(($(xdotool getdisplaygeometry | awk '{print $1}') / 3))
-xdotool windowsize "$current" $newheight $newwidth
-newsize=$(xdotool getwindowgeometry "$current" | grep Geometry | sed -e 's/x/ /g' | awk '{print $3}')
-newwidth=$(xdotool getwindowgeometry "$current" | grep Geometry | grep -o " [0-9]*")
-
-case "$1" in
- left) horizontal=0; vertical=$(($(xdotool getdisplaygeometry | awk '{print $2}') - newsize)) ;;
- right) horizontal=$(($(xdotool getdisplaygeometry | awk '{print $1}') - newwidth)) ; vertical=$(($(xdotool getdisplaygeometry | awk '{print $2}') - newsize)) ;;
-esac
-xdotool windowmove "$current" $horizontal $vertical
diff --git a/.local/bin/i3cmds/i3resize b/.local/bin/i3cmds/i3resize
deleted file mode 100755
index 0bfb5ea..0000000
--- a/.local/bin/i3cmds/i3resize
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-# This script was made by `goferito` on Github.
-# Some cleanup by Luke.
-
-[ -z "$1" ] && echo "No direction provided" && exit 1
-distanceStr="2 px or 2 ppt"
-
-moveChoice() {
- i3-msg resize "$1" "$2" "$distanceStr" | grep '"success":true' || \
- i3-msg resize "$3" "$4" "$distanceStr"
-}
-
-case $1 in
- up)
- moveChoice grow up shrink down
- ;;
- down)
- moveChoice shrink up grow down
- ;;
- left)
- moveChoice shrink right grow left
- ;;
- right)
- moveChoice grow right shrink left
- ;;
-esac
-
diff --git a/.local/bin/i3cmds/tmuxdd b/.local/bin/i3cmds/tmuxdd
deleted file mode 100755
index 3997240..0000000
--- a/.local/bin/i3cmds/tmuxdd
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-# This is the script that i3 runs to either start tmux in
-# the dropdown terminal or log into a previous session.
-tmux a || tmux
diff --git a/.local/bin/i3cmds/toggle-welcome b/.local/bin/i3cmds/toggle-welcome
deleted file mode 100755
index d15ca14..0000000
--- a/.local/bin/i3cmds/toggle-welcome
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-# Toggles the LARBS welcome message.
-
-PIC="${XDG_DATA_HOME:-$HOME/.local/share}/larbs/larbs.png"
-
-grep LARBSWELCOME "$XDG_CONFIG_HOME/xprofile" &&
- ( sed -i "/LARBSWELCOME/d" "$XDG_CONFIG_HOME/xprofile" && notify-send -i "$PIC" "LARBS welcome message" "Welcome message disabled. Press Super+Shift+F1 again to reverse." ) ||
- ( echo "notify-send -i \"$PIC\" \"Welcome to LARBS\" \"Press super+F1 for the help menu.\" # LARBSWELCOME" >> "$XDG_CONFIG_HOME/xprofile" &&
- notify-send -i "$PIC" "LARBS welcome message" "Welcome message re-enabled." )