all repos — dotfiles @ 5de32a513f82634a6205d004292b72f49c739da8

my *nix dotfiles

bin: Clean up dead scripts

Signed-off-by: Anirudh Oppiliappan <x@icyphox.sh>
Anirudh Oppiliappan x@icyphox.sh
Fri, 17 Jan 2020 22:13:37 +0530
commit

5de32a513f82634a6205d004292b72f49c739da8

parent

1bc68c8e1ecbc599d7c4916f4f8ba06cbd99cafb

11 files changed, 0 insertions(+), 125 deletions(-)

jump to
D bin/c2nim

@@ -1,1 +0,0 @@

-/home/icy/Leet/c2nim/c2nim
D bin/cutter

@@ -1,1 +0,0 @@

-/home/icy/Leet/Cutter-v1.6-x86_64.AppImage
D bin/elnotify.py

@@ -1,113 +0,0 @@

-from __future__ import unicode_literals - -import weechat as weechat -import subprocess -from os import environ, path - -crimnotify_name = "crimnotify" -crimnotify_version = "0.1" -crimnotify_license = "GPL3" - -# convenient table checking for bools -true = { "on": True, "off": False } - -# declare this here, will be global config() object -# but is initialized in __main__ -cfg = None - -class config(object): - def __init__(self): - # default options for lnotify - self.opts = { - "highlight": "on", - "query": "on", - "notify_away": "off", - "icon": "weechat", - } - - self.init_config() - self.check_config() - - def init_config(self): - for opt, value in self.opts.items(): - temp = weechat.config_get_plugin(opt) - if not len(temp): - weechat.config_set_plugin(opt, value) - - def check_config(self): - for opt in self.opts: - self.opts[opt] = weechat.config_get_plugin(opt) - - def __getitem__(self, key): - return self.opts[key] - -def printc(msg): - weechat.prnt("", msg) - -def handle_msg(data, pbuffer, date, tags, displayed, highlight, prefix, message): - highlight = bool(highlight) and cfg["highlight"] - query = true[cfg["query"]] - notify_away = true[cfg["notify_away"]] - buffer_type = weechat.buffer_get_string(pbuffer, "localvar_type") - away = weechat.buffer_get_string(pbuffer, "localvar_away") - x_focus = False - window_name = "" - my_nickname = "nick_" + weechat.buffer_get_string(pbuffer, "localvar_nick") - - # Check if active window is in the ignore_windows_list and skip notification - if (environ.get('DISPLAY') != None) and path.isfile("/bin/xdotool"): - cmd_pid="xdotool getactivewindow getwindowpid".split() - window_pid = subprocess.check_output(cmd_pid).decode("utf-8") - cmd_name=("ps -ho comm -p %s"%(window_pid)).split() - window_name = subprocess.check_output(cmd_name).decode("utf-8") - ignore_windows_list = [""] - if window_name in ignore_windows_list: - x_focus = True - return weechat.WEECHAT_RC_OK - - if pbuffer == weechat.current_buffer() and x_focus: - return weechat.WEECHAT_RC_OK - - if away and not notify_away: - return weechat.WEECHAT_RC_OK - - if my_nickname in tags: - return weechat.WEECHAT_RC_OK - - buffer_name = weechat.buffer_get_string(pbuffer, "short_name") - - - if buffer_type == "private" and query: - notify_user(buffer_name, message) - elif buffer_name == "#crimson": - notify_user("{}".format(prefix), message) - elif buffer_type == "channel" and highlight: - notify_user("{} @ {}".format(prefix, buffer_name), message) - - return weechat.WEECHAT_RC_OK - -def process_cb(data, command, return_code, out, err): - if return_code == weechat.WEECHAT_HOOK_PROCESS_ERROR: - weechat.prnt("", "Error with command '%s'" % command) - elif return_code != 0: - weechat.prnt("", "return_code = %d" % return_code) - weechat.prnt("", "notify-send has an error") - return weechat.WEECHAT_RC_OK - -def notify_user(origin, message): - hook = weechat.hook_process_hashtable("notify-send", - { "arg1": "-i", "arg2": cfg["icon"], - "arg3": "-a", "arg4": "WeeChat", - "arg5": origin, "arg6": message }, - 20000, "process_cb", "") - - return weechat.WEECHAT_RC_OK - -# execute initializations in order -if __name__ == "__main__": - weechat.register(crimnotify_name, "kevr", crimnotify_version, crimnotify_license, - "{} - A libnotify script for weechat".format(crimnotify_name), "", "") - - cfg = config() - print_hook = weechat.hook_print("", "", "", 1, "handle_msg", "") -
D bin/exercism

@@ -1,1 +0,0 @@

-/home/icy/Leet/exercism
D bin/hs

@@ -1,1 +0,0 @@

-/home/icy/leet/hastysite
D bin/ida

@@ -1,1 +0,0 @@

-/home/icy/leet/idafree-7.0/ida64
D bin/karun

@@ -1,1 +0,0 @@

-/home/icy/Leet/karax/karax/tools/karun
D bin/lien

@@ -1,1 +0,0 @@

-/home/icy/leet/lien/lien
D bin/repl

@@ -1,1 +0,0 @@

-/home/icy/Code/repl/repl
D bin/shite

@@ -1,1 +0,0 @@

-/home/icy/code/shite/shite
D bin/telegram

@@ -1,3 +0,0 @@

-#!/usr/bin/env bash - -~/downloads/Telegram/Updater