From 2b6c37b654eda7ccd9571369234a630ca1000b4e Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Wed, 16 May 2018 10:54:58 +0100 Subject: [PATCH 01/16] qutebrowser: jump to caret in editor --- qutebrowser/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config.py b/qutebrowser/config.py index 3113688..cb2b87a 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -744,7 +744,7 @@ c.downloads.open_dispatcher = "rifle" ## `{line0}`: Same as `{line}`, but starting from index 0. * `{column0}`: ## Same as `{column}`, but starting from index 0. ## Type: ShellCommand -c.editor.command = ['urxvtc', '-e', 'vim', '{}'] +c.editor.command = ['urxvtc', '-e', 'vim', '{file}', '-c', 'normal {line}G{column0}l'] ## Encoding to use for the editor. ## Type: Encoding -- 2.49.0 From ce1c0b27400f6bfa778eeb1f77b80df58592958e Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Wed, 16 May 2018 10:57:05 +0100 Subject: [PATCH 02/16] qutebrowser: Restore old default of 2 min_chars for hints --- qutebrowser/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config.py b/qutebrowser/config.py index cb2b87a..1fd4d2d 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -883,7 +883,7 @@ c.hints.chars = 'aoeuidhtns' ## Minimum number of characters used for hint strings. ## Type: Int -# c.hints.min_chars = 1 +c.hints.min_chars = 2 ## Mode to use for hints. ## Type: String -- 2.49.0 From 0a4c55b1ca308b27989b49f56851a4d1ee99a60f Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Wed, 16 May 2018 10:57:28 +0100 Subject: [PATCH 03/16] qutebrowser: lazy_restore tabs --- qutebrowser/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config.py b/qutebrowser/config.py index 1fd4d2d..7d5b0ca 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -1071,7 +1071,7 @@ c.hints.scatter = False ## Load a restored tab as soon as it takes focus. ## Type: Bool -# c.session.lazy_restore = False +c.session.lazy_restore = True ## Languages to use for spell checking. You can check for available ## languages and install dictionaries using scripts/dictcli.py. Run the -- 2.49.0 From 7a392a2c29cff6addef4bb552c8cb75982431b7e Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Wed, 16 May 2018 11:28:54 +0100 Subject: [PATCH 04/16] qutebrowser: add bookmarks --- qutebrowser/bookmarks/urls | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 qutebrowser/bookmarks/urls diff --git a/qutebrowser/bookmarks/urls b/qutebrowser/bookmarks/urls new file mode 100644 index 0000000..556b8be --- /dev/null +++ b/qutebrowser/bookmarks/urls @@ -0,0 +1,7 @@ +https://ultrahaptics.atlassian.net/secure/Dashboard.jspa JIRA +https://ultrahaptics.peoplehr.net/ People +http://localhost:631/ Home - CUPS 2.2.3 +https://ultrahaptics.slack.com/messages/@samir.benmendil/ samir.benmendil | Ultrahaptics Slack +http://devdocs.io/ DevDocs API Documentation +https://ultrahaptics.slack.com/messages/C2SFBNZ7G/details/ comics | Ultrahaptics Slack +https://ultrahaptics.atlassian.net/plugins/servlet/ac/is.origo.jira.tempo-plugin/tempo-my-work#!/ My work - JIRA -- 2.49.0 From bb2d85aedc95e1abbd20325fd79ced3cc6c260b8 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Wed, 16 May 2018 11:18:13 +0100 Subject: [PATCH 05/16] vim: disable ycm-generator plugin --- vim/vimrc | 1 - 1 file changed, 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index d652461..cf8ae2d 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -31,7 +31,6 @@ Plugin 'octol/vim-cpp-enhanced-highlight' Plugin 'raimondi/delimitmate' Plugin 'ram-z/vim-clang-format' Plugin 'ram-z/vimwiki' -Plugin 'rdnetto/ycm-generator' Plugin 'scrooloose/syntastic' Plugin 'sgeb/vim-diff-fold' Plugin 'shougo/unite.vim' -- 2.49.0 From 0e732b69a54919f260a5ccb045db7cf65e6850cc Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Wed, 16 May 2018 11:23:54 +0100 Subject: [PATCH 06/16] vim: unimpaired-like commands for :Unite{Next,Prev} --- vim/vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index cf8ae2d..f20a817 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -644,6 +644,8 @@ call unite#custom#profile('default', 'context', { nnoremap [unite] nmap u [unite] nnoremap [unite]u :UniteResume +nnoremap [u :UnitePrevious +nnoremap ]u :UniteNext " unite-grep {{{3 " seems not respected -- 2.49.0 From 847f32c0576819eac9eb187e5caddda00ddaa779 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Wed, 16 May 2018 11:24:22 +0100 Subject: [PATCH 07/16] vim: map to run all google tests --- vim/vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/vimrc b/vim/vimrc index f20a817..8a89f32 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -715,6 +715,7 @@ nmap ga (EasyAlign) let g:gtest#highlight_failing_tests = 0 nnoremap tt :GTestRun +nnoremap ta :GTestCase *:GTestName *:GTestRun nnoremap tu :GTestRunUnderCursor " vim-json {{{2 -- 2.49.0 From 220b74614603a07882aa8cb994b280a2e64a4aa6 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Wed, 16 May 2018 11:35:15 +0100 Subject: [PATCH 08/16] xkb: cleanup config files --- xkb/smartlab-imac1.xkb | 8 -------- xkb/smartlab-imac2.xkb | 1 - xkb/{sb-arch.xkb => uh-nuc001.xkb} | 0 3 files changed, 9 deletions(-) delete mode 100644 xkb/smartlab-imac1.xkb delete mode 120000 xkb/smartlab-imac2.xkb rename xkb/{sb-arch.xkb => uh-nuc001.xkb} (100%) diff --git a/xkb/smartlab-imac1.xkb b/xkb/smartlab-imac1.xkb deleted file mode 100644 index e5bfa75..0000000 --- a/xkb/smartlab-imac1.xkb +++ /dev/null @@ -1,8 +0,0 @@ -xkb_keymap { - xkb_keycodes { include "evdev" }; - xkb_types { include "complete" }; - xkb_compat { include "complete" }; - #xkb_symbols { include "pc+inet(evdev)+dvorak+dvorak(kinesis)" }; - xkb_symbols { include "pc+inet(evdev)+dvorak+dvorak(applealu_iso)" }; - xkb_geometry { include "kinesis(model100)" }; -}; diff --git a/xkb/smartlab-imac2.xkb b/xkb/smartlab-imac2.xkb deleted file mode 120000 index 90a1df4..0000000 --- a/xkb/smartlab-imac2.xkb +++ /dev/null @@ -1 +0,0 @@ -smartlab-imac1.xkb \ No newline at end of file diff --git a/xkb/sb-arch.xkb b/xkb/uh-nuc001.xkb similarity index 100% rename from xkb/sb-arch.xkb rename to xkb/uh-nuc001.xkb -- 2.49.0 From f081a28c79966703940a8e7de563b8622f08e2a5 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Wed, 16 May 2018 11:10:58 +0000 Subject: [PATCH 09/16] zsh: add List to pacclean --- zsh/aliases/pacman.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh/aliases/pacman.zsh b/zsh/aliases/pacman.zsh index 34c5d8c..2e29650 100644 --- a/zsh/aliases/pacman.zsh +++ b/zsh/aliases/pacman.zsh @@ -39,7 +39,7 @@ pacclean() { local edrq='' while true; do - echo -n "Explicit, Dependency, Remove, Quit? [Edrq] " + echo -n "Explicit, Dependency, Remove, List, Quit? [Edrlq] " read -sk edrq echo case $edrq in @@ -48,6 +48,7 @@ pacclean() { [Ee]) break ;; [Rr]) sudo pacman -Rnscu $pkg; break ;; [Dd]) sudo pacman -D --asdeps $pkg; break ;; + [Ll]) pacman -Ql $pkg | less ;; esac done done -- 2.49.0 From 590d3718adc3886c5f5e72a684b3e7b121da994f Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Fri, 18 May 2018 18:03:27 +0100 Subject: [PATCH 10/16] mutt: office365 contacts completion --- bin/office365-book | 39 +++++++++++++++++++++++++++++++++++++++ mutt/accounts/gmail | 3 +++ mutt/accounts/office365 | 3 +++ mutt/muttrc | 3 --- 4 files changed, 45 insertions(+), 3 deletions(-) create mode 100755 bin/office365-book diff --git a/bin/office365-book b/bin/office365-book new file mode 100755 index 0000000..3054a5c --- /dev/null +++ b/bin/office365-book @@ -0,0 +1,39 @@ +#!/usr/bin/env bash + +user=samir.benmendil@ultrahaptics.com +pass=$(pass ultrahaptics/okta.com/samir.benmendil@ultrahaptics.com) +url="https://outlook.office365.com/EWS/Exchange.asmx" + +read -r -d '' data < + + + + $1 + + + +EOF + +out=$(curl -s -u "$user:$pass" -L "$url" -d "$data") + +readarray -t email < <(echo $out | xpath -q -e '//t:Mailbox/t:EmailAddress/text()') +readarray -t name < <(echo $out | xpath -q -e '//t:Contact/t:DisplayName/text()') + +count=${#email[@]} + +if [[ "$count" -eq 0 ]]; then + echo "No matches" + exit 1 +fi + +echo "$count matches" +for (( i = 0; i < $count; i++ )); do + echo -e "${email[$i]}\t${name[$i]}\t" +done diff --git a/mutt/accounts/gmail b/mutt/accounts/gmail index 69458e0..f5cdc6a 100644 --- a/mutt/accounts/gmail +++ b/mutt/accounts/gmail @@ -9,6 +9,9 @@ set postponed = "+gmail/drafts" # drafts folder unset record # do not move sent msgs to a folder, gmail does that unset move # do not move read msgs, gmail does that +# goobook +set query_command = "goobook query '%s'" + mailboxes "+gmail/inbox" mailboxes "+gmail/sent" mailboxes "+gmail/youtube" diff --git a/mutt/accounts/office365 b/mutt/accounts/office365 index 553b7e5..23ad796 100644 --- a/mutt/accounts/office365 +++ b/mutt/accounts/office365 @@ -9,6 +9,9 @@ set postponed = "+office365/drafts" # drafts folder unset record # do not move sent msgs to a folder, gmail does that unset move # do not move read msgs, gmail does that +# office365 +set query_command = "office365-book" + mailboxes "+office365/inbox" mailboxes "+office365/sent" mailboxes "+office365/archive" diff --git a/mutt/muttrc b/mutt/muttrc index 62b273c..18cdb1d 100644 --- a/mutt/muttrc +++ b/mutt/muttrc @@ -24,9 +24,6 @@ set date_format = "!%b %d, %Y at %-H:%M" # use 24-hour clock # send clacks my_hdr X-Clacks-Overhead: GNU Terry Pratchett -# goobook -set query_command = "goobook query '%s'" - # sort/threading set sort = threads set sort_aux = last-date-received -- 2.49.0 From fab7f37dff1f0bba696d54ae5f0c3dc7b48519b3 Mon Sep 17 00:00:00 2001 From: ramsi Date: Mon, 21 May 2018 17:06:47 +0100 Subject: [PATCH 11/16] flexget: reduce timeframe for Westworld --- flexget/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flexget/config.yml b/flexget/config.yml index 6a4588b..289b37f 100644 --- a/flexget/config.yml +++ b/flexget/config.yml @@ -145,7 +145,7 @@ templates: # {{{1 - the wire: { quality: 720p+ } - two and a half men - vinyl - - westworld + - westworld: { timeframe: 9 hours, quality: dd5.1+ } series-trakt: # {{{2 -- 2.49.0 From 68e6a1194080e79c23608ff55f2c7fa054f3c6fc Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Mon, 2 Jul 2018 09:49:24 +0100 Subject: [PATCH 12/16] mutt: show iCal entries in mutt --- mutt/ical2txt | 22 ++++++++++++++++++++++ mutt/mailcap | 1 + 2 files changed, 23 insertions(+) create mode 100755 mutt/ical2txt diff --git a/mutt/ical2txt b/mutt/ical2txt new file mode 100755 index 0000000..5b7c998 --- /dev/null +++ b/mutt/ical2txt @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 + +from icalendar import Calendar + +def format_cal(start, end, description): + str = "Start: {:%Y-%m-%d %H:%M}\n".format(start) + str += "End: {:%Y-%m-%d %H:%M}\n\n".format(end) + if description is not None: + str += description + + return str + + +with open('/dev/stdin', 'r') as f: + cal = Calendar.from_ical(f.read()) + +for c in cal.walk(): + if c.name == "VEVENT": + print(format_cal( + c.get('dtstart').dt, + c.get('dtend').dt, + c.get('description'))) diff --git a/mutt/mailcap b/mutt/mailcap index 52c4d1c..6eb7391 100644 --- a/mutt/mailcap +++ b/mutt/mailcap @@ -1,4 +1,5 @@ text/html; $XDG_CONFIG_HOME/mutt/mutt_bgrun qutebrowser %s; test=test -n "$DISPLAY"; nametemplate=%s.html text/html; w3m -I %{charset} -dump %s -T text/html -cols "$COLUMNS" -o display_link_number=1; copiousoutput; nametemplate=%s.html +text/calendar; $XDG_CONFIG_HOME/mutt/ical2txt; copiousoutput application/*; $XDG_CONFIG_HOME/mutt/mutt_bgrun rifle -f F %s; image/*; rifle -f F %s; -- 2.49.0 From c718923582a2491791b129ed8572a38f45c9d62e Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Fri, 6 Jul 2018 13:43:25 +0100 Subject: [PATCH 13/16] vim/ultisnips/cpp: replace WIN32 with _WIN32 _WIN32 is defined by the compiler, which is more likely to be defined than WIN32 which is defined by the Windows SDK. --- vim/ultisnips/cpp.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/ultisnips/cpp.snippets b/vim/ultisnips/cpp.snippets index 99cfa78..5b55701 100644 --- a/vim/ultisnips/cpp.snippets +++ b/vim/ultisnips/cpp.snippets @@ -56,7 +56,7 @@ snippet cplat "Cross platform pre processor split" b ${1} #elif defined(__APPLE__) ${2} -#elif defined(WIN32) +#elif defined(_WIN32) ${3} #endif endsnippet -- 2.49.0 From 079c4cc7f0122c10bc93fa70ea50499b0d87f0d4 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Fri, 27 Jul 2018 10:16:58 +0100 Subject: [PATCH 14/16] weechat: update wee-slack and settings --- weechat/python/wee-slack | 2 +- weechat/xfer.conf | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/weechat/python/wee-slack b/weechat/python/wee-slack index f1d6fc7..4fac1a9 160000 --- a/weechat/python/wee-slack +++ b/weechat/python/wee-slack @@ -1 +1 @@ -Subproject commit f1d6fc7e5bd64e48ddd9a9aca1cdc985dfc2265c +Subproject commit 4fac1a9512fdac1268599e13e37e1778e31487ef diff --git a/weechat/xfer.conf b/weechat/xfer.conf index c7ef602..fd8b814 100644 --- a/weechat/xfer.conf +++ b/weechat/xfer.conf @@ -30,6 +30,7 @@ blocksize = 65536 fast_send = on own_ip = "" port_range = "" +send_ack = on speed_limit = 0 timeout = 300 -- 2.49.0 From 1502f637508966b6a08e9d51653575645bce6210 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 7 Aug 2018 10:01:42 +0000 Subject: [PATCH 15/16] weechat: update irc.conf.in --- weechat/irc.conf.in | 122 +++++++++++++++++++++++++++++++++----------- 1 file changed, 93 insertions(+), 29 deletions(-) diff --git a/weechat/irc.conf.in b/weechat/irc.conf.in index 9f1fe10..45fde65 100644 --- a/weechat/irc.conf.in +++ b/weechat/irc.conf.in @@ -1,8 +1,17 @@ # -# irc.conf -- weechat v1.0 +# weechat -- irc.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart # [look] +buffer_open_before_autojoin = on +buffer_open_before_join = off buffer_switch_autojoin = on buffer_switch_join = on color_nicks_in_names = off @@ -17,7 +26,7 @@ display_ctcp_unknown = on display_host_join = on display_host_join_local = on display_host_quit = on -display_join_message = "332" +display_join_message = "329,332,333,366" display_old_topic = on display_pv_away_once = on display_pv_back = on @@ -25,7 +34,6 @@ highlight_channel = "$nick" highlight_pv = "$nick" highlight_server = "$nick" highlight_tags_restrict = "irc_privmsg,irc_notice" -item_away_message = on item_channel_modes_hide_args = "k" item_display_server = buffer_plugin item_nick_modes = on @@ -34,9 +42,6 @@ join_auto_add_chantype = off msgbuffer_fallback = current new_channel_position = none new_pv_position = none -nick_color_force = "" -nick_color_hash = sum -nick_color_stop_chars = "_|[" nick_completion_smart = speakers nick_mode = prefix nick_mode_empty = off @@ -52,35 +57,38 @@ pv_tags = "notify_private" raw_messages = 256 server_buffer = merge_with_core smart_filter = on +smart_filter_chghost = on smart_filter_delay = 5 smart_filter_join = on smart_filter_join_unmask = 30 -smart_filter_mode = "ovh" +smart_filter_mode = "+" smart_filter_nick = on smart_filter_quit = on +temporary_servers = off topic_strip_colors = off [color] input_nick = lightcyan -item_away = yellow item_channel_modes = default item_lag_counting = default item_lag_finished = yellow item_nick_modes = default +message_chghost = brown message_join = green message_quit = red mirc_remap = "1,-1:darkgray" nick_prefixes = "q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue" notice = green reason_quit = default +topic_current = default topic_new = white -topic_old = darkgray +topic_old = default [network] -alternate_nick = on autoreconnect_delay_growing = 2 -autoreconnect_delay_max = 1800 -ban_mask_default = "*!$user@$host" +autoreconnect_delay_max = 600 +ban_mask_default = "*!$ident@$host" +channel_encode = off colors_receive = on colors_send = on lag_check = 60 @@ -90,8 +98,9 @@ lag_reconnect = 0 lag_refresh_interval = 1 notify_check_ison = 1 notify_check_whois = 5 +sasl_fail_unavailable = on send_unknown_commands = off -whois_double_nick = on +whois_double_nick = off [msgbuffer] @@ -109,32 +118,37 @@ autoreconnect = on autoreconnect_delay = 10 autorejoin = off autorejoin_delay = 30 -away_check = 5 -away_check_max_nicks = 50 +away_check = 0 +away_check_max_nicks = 25 capabilities = "" command = "" command_delay = 0 connection_timeout = 60 -default_msg_kick = "" -default_msg_part = "WeeChat %v" -default_msg_quit = "WeeChat %v" ipv6 = on local_hostname = "" +msg_kick = "" +msg_part = "WeeChat ${info:version}" +msg_quit = "WeeChat ${info:version}" nicks = "ramsi,ramsi1,ramsi2,ramsi3,ramsi4" +nicks_alternate = on notify = "" password = "" proxy = "" realname = "" -sasl_mechanism = dh-blowfish +sasl_fail = continue +sasl_key = "" +sasl_mechanism = plain sasl_password = "" sasl_timeout = 15 sasl_username = "" +split_msg_max_length = 512 ssl = off ssl_cert = "" ssl_dhkey_size = 2048 ssl_fingerprint = "" -ssl_priorities = "NORMAL" +ssl_priorities = "NORMAL:-VERS-SSL3.0" ssl_verify = on +usermode = "" username = "ramsi" [server] @@ -159,9 +173,11 @@ freenode.autoconnect = on freenode.autoreconnect freenode.autoreconnect_delay freenode.nicks +freenode.nicks_alternate freenode.username = "ramsi/freenode" freenode.realname freenode.local_hostname +freenode.usermode freenode.command freenode.command_delay freenode.autojoin @@ -172,10 +188,11 @@ freenode.anti_flood_prio_high freenode.anti_flood_prio_low freenode.away_check freenode.away_check_max_nicks -freenode.default_msg_kick -freenode.default_msg_part -freenode.default_msg_quit +freenode.msg_kick +freenode.msg_part +freenode.msg_quit freenode.notify +freenode.split_msg_max_length bitlbee.addresses = "rmz.io/60665" bitlbee.proxy bitlbee.ipv6 @@ -197,9 +214,11 @@ bitlbee.autoconnect = on bitlbee.autoreconnect bitlbee.autoreconnect_delay bitlbee.nicks +bitlbee.nicks_alternate bitlbee.username = "ramsi/bitlbee" bitlbee.realname bitlbee.local_hostname +bitlbee.usermode bitlbee.command bitlbee.command_delay bitlbee.autojoin @@ -210,10 +229,11 @@ bitlbee.anti_flood_prio_high bitlbee.anti_flood_prio_low bitlbee.away_check bitlbee.away_check_max_nicks -bitlbee.default_msg_kick -bitlbee.default_msg_part -bitlbee.default_msg_quit +bitlbee.msg_kick +bitlbee.msg_part +bitlbee.msg_quit bitlbee.notify +bitlbee.split_msg_max_length oftc.addresses = "rmz.io/60665" oftc.proxy oftc.ipv6 @@ -235,9 +255,11 @@ oftc.autoconnect = on oftc.autoreconnect oftc.autoreconnect_delay oftc.nicks +oftc.nicks_alternate oftc.username = "ramsi/oftc" oftc.realname oftc.local_hostname +oftc.usermode oftc.command oftc.command_delay oftc.autojoin @@ -248,7 +270,49 @@ oftc.anti_flood_prio_high oftc.anti_flood_prio_low oftc.away_check oftc.away_check_max_nicks -oftc.default_msg_kick -oftc.default_msg_part -oftc.default_msg_quit +oftc.msg_kick +oftc.msg_part +oftc.msg_quit oftc.notify +oftc.split_msg_max_length +perl.addresses = "ssl.irc.perl.org/7062" +perl.proxy +perl.ipv6 +perl.ssl = on +perl.ssl_cert +perl.ssl_priorities +perl.ssl_dhkey_size +perl.ssl_fingerprint +perl.ssl_verify = off +perl.password +perl.capabilities +perl.sasl_mechanism +perl.sasl_username +perl.sasl_password +perl.sasl_key +perl.sasl_timeout +perl.sasl_fail +perl.autoconnect +perl.autoreconnect +perl.autoreconnect_delay +perl.nicks +perl.nicks_alternate +perl.username +perl.realname +perl.local_hostname +perl.usermode +perl.command +perl.command_delay +perl.autojoin +perl.autorejoin +perl.autorejoin_delay +perl.connection_timeout +perl.anti_flood_prio_high +perl.anti_flood_prio_low +perl.away_check +perl.away_check_max_nicks +perl.msg_kick +perl.msg_part +perl.msg_quit +perl.notify +perl.split_msg_max_length -- 2.49.0 From 1b1bdcb0456105e7811d95aef9d5e99ab86bb181 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 7 Aug 2018 10:19:57 +0000 Subject: [PATCH 16/16] weechat: remove nick modes from prompt and adjust width I whish there were some padding function for proper formatting. --- weechat/irc.conf.in | 2 +- weechat/weechat.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/weechat/irc.conf.in b/weechat/irc.conf.in index 45fde65..61a4553 100644 --- a/weechat/irc.conf.in +++ b/weechat/irc.conf.in @@ -36,7 +36,7 @@ highlight_server = "$nick" highlight_tags_restrict = "irc_privmsg,irc_notice" item_channel_modes_hide_args = "k" item_display_server = buffer_plugin -item_nick_modes = on +item_nick_modes = off item_nick_prefix = on join_auto_add_chantype = off msgbuffer_fallback = current diff --git a/weechat/weechat.conf b/weechat/weechat.conf index 673155a..3ef52b7 100644 --- a/weechat/weechat.conf +++ b/weechat/weechat.conf @@ -292,7 +292,7 @@ input.conditions = "${window.buffer.full_name} != perl.highmon" input.filling_left_right = vertical input.filling_top_bottom = horizontal input.hidden = off -input.items = "time, input_prompt │,[input_search],[input_paste],scroll,input_text" +input.items = "time, input_prompt │,[input_search],[input_paste],scroll,input_text" input.position = bottom input.priority = 10 input.separator = off -- 2.49.0