diff options
Diffstat (limited to '')
| -rw-r--r-- | config/qutebrowser/config.py | 2 | ||||
| -rw-r--r-- | config/qutebrowser/ui.py | 9 | ||||
| -rwxr-xr-x | config/qutebrowser/userscripts/bookmark | 16 | ||||
| -rw-r--r-- | config/zsh/plugins/fzf-cd.zsh | 12 | ||||
| -rw-r--r-- | config/zsh/plugins/output-operations.zsh | 19 | ||||
| -rw-r--r-- | configuration.nix | 16 |
6 files changed, 69 insertions, 5 deletions
diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index 5f80067..97c7147 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -93,6 +93,8 @@ c.hints.chars = 'azsxdclmknjb' c.hints.auto_follow = 'unique-match' c.content.pdfjs = True +nunmap('m') +nunmap('M') nunmap("<Ctrl-a>") nunmap('<Ctrl-v>') nunmap('<Ctrl-x>') diff --git a/config/qutebrowser/ui.py b/config/qutebrowser/ui.py index e976f98..aa16249 100644 --- a/config/qutebrowser/ui.py +++ b/config/qutebrowser/ui.py @@ -18,8 +18,13 @@ xresources = read_xresources('*') c.fonts.default_family = 'JetBrainsMono Nerd Font' c.fonts.default_size = '12px' c.colors.webpage.preferred_color_scheme = 'dark' -c.colors.webpage.bg = "white" -c.colors.webpage.darkmode.enabled = False + +c.colors.webpage.darkmode.enabled = True +c.colors.webpage.darkmode.algorithm = "lightness-cielab" +c.colors.webpage.darkmode.threshold.text = 150 +c.colors.webpage.darkmode.threshold.background = 100 +c.colors.webpage.darkmode.policy.images = 'always' +c.colors.webpage.darkmode.grayscale.images = 0.35 ## Hints c.colors.hints.bg = 'yellow' diff --git a/config/qutebrowser/userscripts/bookmark b/config/qutebrowser/userscripts/bookmark new file mode 100755 index 0000000..8695551 --- /dev/null +++ b/config/qutebrowser/userscripts/bookmark @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +BOOKMARKS_PATH="$HOME/nixos/extras/bookmarks" + +case "$1" in + show) + local link=$(dmenu -p 'Bookmark :: ' < "$BOOKMARKS_PATH") + if test "$link"; then + echo "open -t '$link'" >> "$QUTE_FIFO" + fi + ;; + new) + echo "$QUTE_URL" >> "$BOOKMARKS_PATH" + ;; +esac + diff --git a/config/zsh/plugins/fzf-cd.zsh b/config/zsh/plugins/fzf-cd.zsh new file mode 100644 index 0000000..e4b4337 --- /dev/null +++ b/config/zsh/plugins/fzf-cd.zsh @@ -0,0 +1,12 @@ +fzf-change-dir() { + local result=$(find -type d | fzf); + + if ! [[ -z "$result" ]]; then + cd "$result" + fi + + zle send-break +} + +zle -N fzf-change-dir; +bindkey '^P' fzf-change-dir; diff --git a/config/zsh/plugins/output-operations.zsh b/config/zsh/plugins/output-operations.zsh new file mode 100644 index 0000000..e9b3546 --- /dev/null +++ b/config/zsh/plugins/output-operations.zsh @@ -0,0 +1,19 @@ +# TODO + +# logoutputdir=$(mktemp -d /tmp/zsh-output-operations.XXXXXXXX/) + +output-file() { + local termid=$(tty | sed 's|/|-|g'); + echo "$logoutputdir/last-output-$termid"; +} + +xz() { + "$@" |& tee $(output-file); +} + +# Cleanup +function plugin-exit-handler { + rm -f $(output-file); +} + +# trap plugin-exit-handler EXIT diff --git a/configuration.nix b/configuration.nix index c001126..b41be4d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -60,6 +60,18 @@ in hardware.bluetooth.enable = false; # services.blueman.enable = true; + # services.vdirsyncer = { + # enable = true; + # jobs = { + # google_cal = { + # enable = true; + # config = { + # # + # }; + # }; + # }; + # }; + # Enable sound. sound.enable = false; security.rtkit.enable = true; @@ -67,8 +79,6 @@ in enable = true; alsa.enable = true; pulse.enable = true; - # jack.enable = true; - # alsa.support32Bit = true; }; # Network @@ -98,7 +108,7 @@ in }; lxd.enable = false; virtualbox.host.enable = false; - #anbox.enable = true; + # anbox.enable = true; }; # I18n and keyboard layout |
