From 4e8992266f11ce8008f5fce460cc64110b15c99b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sun, 10 Jun 2018 17:39:35 +0200 Subject: [i3] Remove obsolete pidgin stuff --- .i3/config | 7 ------- .i3/scripts/start_pidgin.sh | 29 ----------------------------- 2 files changed, 36 deletions(-) delete mode 100755 .i3/scripts/start_pidgin.sh diff --git a/.i3/config b/.i3/config index 9e12f0f..c4a5bff 100644 --- a/.i3/config +++ b/.i3/config @@ -208,7 +208,6 @@ bindsym $mod+Ctrl+p exec passmenu --type --user -b -fn $dmenu_font bindsym $mod+Ctrl+Shift+p exec passmenu --type --both -b -fn $dmenu_font # Misc (minus shift are the focus options) -bindsym $mod+Shift+i exec $script/start_pidgin.sh bindsym $mod+Shift+b exec firefox bindsym $mod+Shift+m exec thunderbird @@ -240,12 +239,6 @@ assign [class="^Firefox$"] → 0: ff for_window [class="^Firefox$" instance="Browser"] floating enable bindsym $mod+b [class="^Firefox$" instance="^Navigator$"] focus -# Pidgin stuff -assign [class="^Pidgin$"] → im -for_window [class="^Pidgin$" window_role="buddy_list"] layout splith, resize shrink width 0 px or 30 ppt, move right -for_window [class="^Pidgin$" window_role="conversation"] resize grow width 0 px or 30 ppt, move left -bindsym $mod+i [class="^Pidgin$" window_role="(?i)conversation"] focus; [class="^Pidgin$"] focus - # Steam assign [class="Steam"] → steam diff --git a/.i3/scripts/start_pidgin.sh b/.i3/scripts/start_pidgin.sh deleted file mode 100755 index 8261113..0000000 --- a/.i3/scripts/start_pidgin.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/zsh -# -# Start Pidgin and make sure, that the buddylist is shown. -# - -# test for pidgin already running -(( `pgrep -xc pidgin` )) && return - -# start dbus-monitor -coproc dbus-monitor --profile "interface=im.pidgin.purple.PurpleInterface" -dbus_pid=$! - -# kill it on exit -TRAPEXIT() { kill $dbus_pid } - -# start pidgin in background -pidgin & - -# wait for the DBus-Service to be available -# we use '--profile' because it renders nicer output -while read -p line; do - [[ $line =~ 'UpdateIdle$' ]] && break - # if the blist is automatically shown, we exit - # else we would move the focus, which is bad - [[ $line =~ 'GtkblistUnhiding$' ]] && return -done - -# if we are here, pidgin is running and the blist is not yet visible -exec purple-send-async PurpleBlistSetVisible int32:1 -- cgit v1.2.3