Skip to content

Instantly share code, notes, and snippets.

@floscr
Created May 3, 2020 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save floscr/f2de360fae7ad436d4cc6060a4459ae4 to your computer and use it in GitHub Desktop.
Save floscr/f2de360fae7ad436d4cc6060a4459ae4 to your computer and use it in GitHub Desktop.
mkBinding
{
utils.mkBinding "Super + @space" "rofi";
}
utils = {
mkBinding = {key, command}: {
my.home.xdg.configFile."sxhkd/sxhkdrc".text = ''
${key}
${command}
'';
my.home.xdg.configFile."my-custom-commands.txt".text = ''
${command}, ${key}
'';
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment