This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name zulip hotkeys fix | |
// @namespace Violentmonkey Scripts | |
// @match https://chat.zulip.org/ | |
// @grant none | |
// @version 1.0 | |
// @author kapsh | |
// @description Make zulip hotkeys work on any (?) layout (see https://github.com/zulip/zulip/issues/7517) | |
// @downloadURL https://gist.github.com/kapsh/afdac0d51b3be1efa8f28f65bd626d00/raw/zulip_hotkeys.user.js | |
// @updateURL https://gist.github.com/kapsh/afdac0d51b3be1efa8f28f65bd626d00/raw/zulip_hotkeys.user.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* less intrusive [over]quoting */ | |
div.message_content blockquote { | |
border-left-width: 2px; | |
} | |
div.message_content:not(:hover) > blockquote > blockquote p:last-of-type { | |
opacity: 0.5; | |
} | |
/* faster spoilers */ | |
div.spoiler-content, span.spoiler-arrow { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- block: | |
- name: pbins distfiles location | |
file: | |
dest: "{{paludis_cache}}/distfiles/pbins" | |
state: directory | |
- name: pbins repository layout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
paludis_confdir: /etc/paludis | |
paludis_repos: /var/db/paludis/repositories |