summaryrefslogtreecommitdiff
path: root/i3
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2018-07-02 21:18:45 -0500
committerBlaise Thompson <blaise@untzag.com>2018-07-02 21:18:45 -0500
commit7bcb0b78ce9e70b5e09ed84677742357ffdd3709 (patch)
treee33afbc154c0c302b78c7888d9e019b77df6340a /i3
parent4fda7b1b6eb947fbf0c9d8e2fe654d4db039401b (diff)
2018-07-02 21:18
Diffstat (limited to 'i3')
-rw-r--r--i3/i3status+config39
-rwxr-xr-xi3/lock.sh6
-rwxr-xr-xi3/toggle_mouse.sh8
3 files changed, 0 insertions, 53 deletions
diff --git a/i3/i3status+config b/i3/i3status+config
deleted file mode 100644
index ca266f5..0000000
--- a/i3/i3status+config
+++ /dev/null
@@ -1,39 +0,0 @@
-general {
- colors = true
- color_good = "#ffffff"
- color_bad = "#cc6666"
- color_degraded = "#81a2be"
- interval = 1
-}
-
-order += "wireless _first_"
-order += "volume master"
-order += "cpu_usage"
-order += "battery 0"
-order += "tztime local"
-
-wireless _first_ {
- format_up = " INT: %essid %bitrate "
- format_down = " INT: down "
-}
-
-volume master {
- format = " ♪ %volume "
- device = "default"
- mixer = "Master"
- mixer_idx = 0
-}
-
-cpu_usage {
- format = " CPU %usage "
-}
-
-battery 0 {
- format = " BAT %percentage "
- format_down = " ⚡ "
- path = "/sys/class/power_supply/BAT%d/uevent"
-}
-
-tztime local {
- format = " %Y-%m-%d %H:%M:%S "
-} \ No newline at end of file
diff --git a/i3/lock.sh b/i3/lock.sh
deleted file mode 100755
index 40554b7..0000000
--- a/i3/lock.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-scrot /tmp/screen.png
-convert /tmp/screen.png -scale 10% -scale 1000% /tmp/screen.png
-[[ -f $1 ]] && convert /tmp/screen.png $1 -gravity center -composite -matte /tmp/screen.png
-i3lock -i /tmp/screen.png -k --timesize=50 --datesize=50 --radius=200 --datestr="%Y-%m-%d" --timecolor=f0c674ff --datecolor=f0c674ff --indicator --timepos="ix-cw/2:iy-cw/6" --datepos="tx:ty-50"
-rm /tmp/screen.png
diff --git a/i3/toggle_mouse.sh b/i3/toggle_mouse.sh
deleted file mode 100755
index 9343810..0000000
--- a/i3/toggle_mouse.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-if [ -z "$(synclient | grep TouchpadOff | grep 1)" ]; then
- synclient TouchpadOff=1
- unclutter -idle 0 &
-else
- synclient TouchpadOff=0
- unclutter -idle 5 &
-fi