diff options
author | shmibs <shmibs@gmail.com> | 2014-02-11 20:50:13 -0700 |
---|---|---|
committer | shmibs <shmibs@gmail.com> | 2014-02-11 20:50:13 -0700 |
commit | 5825e884b80beda1a77234b137fe3a39263ac215 (patch) | |
tree | dc6d977e206a71106ef17b0bdd242a0a2dfcadeb /.ftjerm/2 | |
parent | 597d87abf48838c7cbe27d71aa15943ba90840a4 (diff) | |
download | dotfiles-5825e884b80beda1a77234b137fe3a39263ac215.tar.gz |
removed dropdowns
herbstluftwm doesn't do floating, so dropdowns
don't work, and i was getting fed up with not
having mouseless text/url yanking
Diffstat (limited to '.ftjerm/2')
-rw-r--r-- | .ftjerm/2/commands/connect | 0 | ||||
-rw-r--r-- | .ftjerm/2/commands/search | 0 | ||||
-rwxr-xr-x | .ftjerm/2/weechat.sh | 40 |
3 files changed, 0 insertions, 40 deletions
diff --git a/.ftjerm/2/commands/connect b/.ftjerm/2/commands/connect deleted file mode 100644 index e69de29..0000000 --- a/.ftjerm/2/commands/connect +++ /dev/null diff --git a/.ftjerm/2/commands/search b/.ftjerm/2/commands/search deleted file mode 100644 index e69de29..0000000 --- a/.ftjerm/2/commands/search +++ /dev/null diff --git a/.ftjerm/2/weechat.sh b/.ftjerm/2/weechat.sh deleted file mode 100755 index 3285c6b..0000000 --- a/.ftjerm/2/weechat.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash -sleep .125s -input="" -cd /home/shmibs/.ftjerm/2/commands -while IFS="" read -r -e -d $'\n' -p "irc: " -a input; do - history -s "$input" - - IFS=" " - input=($input) - if [ -n "$input" ]; then - - if [ ${input[0]} == "connect" ]; then - weechat-curses - fi - - if [ ${input[0]} == "logs" ]; then - if [ -z ${input[1]} ]; then - for i in $( ls /home/shmibs/.weechat/logs ); do - echo $i: - ls /home/shmibs/.weechat/logs/$i - echo - done - else - less "/home/.weechat/logs/${input[1]}.log" - fi - fi - - if [ ${input[0]} == "clear" ]; then - clear - fi - - if [ ${input[0]} == "search" ]; then - if [ -n ${input[1]} ]; then - cd /home/shmibs/.weechat/logs - grep --color=always "${input[1]}" ./irc.*${input[2]}* | sed -e 's/.\/irc.\|.weechatlog\|grep: * No such file or directory//g' - cd /home/shmibs/.tilda/2/commands - fi - fi - fi -done |