Dunst and typst
This commit is contained in:
parent
1cd3d7a903
commit
11fc0f67bf
1
dotfiles/neovim/ftplugin/typst.lua
Normal file
1
dotfiles/neovim/ftplugin/typst.lua
Normal file
|
@ -0,0 +1 @@
|
|||
require("my.helpers.wrapMovement").setup()
|
|
@ -30,6 +30,10 @@ function fish_user_key_bindings
|
|||
bind -M default \cx "clear && commandline -f repaint"
|
||||
bind -M insert \cx "clear && commandline -f repaint"
|
||||
# }}}
|
||||
# {{{ C-enter to run command through less
|
||||
bind -M default \e\[13\;2u "commandline -a ' | less' && commandline -f execute"
|
||||
bind -M insert \e\[13\;2u "commandline -a ' | less' && commandline -f execute"
|
||||
# }}}
|
||||
# {{{ C-g to open neogit
|
||||
bind -M default \cg "nvim +Neogit"
|
||||
bind -M insert \cg "nvim +Neogit"
|
||||
|
|
5
home/adrielus/features/desktop/common/dunst.nix
Normal file
5
home/adrielus/features/desktop/common/dunst.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
services.dunst = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
# Common wayland stuff
|
||||
{ lib, pkgs, upkgs, ... }: {
|
||||
imports = [ ../common/wofi.nix ];
|
||||
|
||||
# Makes some stuff run on wayland (?)
|
||||
# Taken from [here](https://github.com/fufexan/dotfiles/blob/3b0075fa7a5d38de13c8c32140c4b020b6b32761/home/wayland/default.nix#L14)
|
||||
# TODO: ask author what those do
|
||||
|
@ -11,6 +12,8 @@
|
|||
# };
|
||||
|
||||
# TODO: set up
|
||||
# - wallpaper
|
||||
# - notification daemon
|
||||
# - screen recording
|
||||
# - volume/backlight controls
|
||||
# - eww bar
|
||||
|
@ -18,13 +21,12 @@
|
|||
# - look into swaylock or whatever people use
|
||||
# - look into greetd or something
|
||||
# - multiple keyboard layouts
|
||||
# - wallpaper
|
||||
# - notification daemon
|
||||
|
||||
home.packages =
|
||||
let
|
||||
_ = lib.getExe;
|
||||
|
||||
# TODO: put this in it's own file perhaps?
|
||||
# Taken from [here](https://github.com/fufexan/dotfiles/blob/3b0075fa7a5d38de13c8c32140c4b020b6b32761/home/wayland/default.nix#L14)
|
||||
wl-ocr = pkgs.writeShellScriptBin "wl-ocr" ''
|
||||
${_ pkgs.grim} -g "$(${_ pkgs.slurp})" -t ppm - \
|
||||
|
|
Loading…
Reference in a new issue