Compare commits
No commits in common. "f9a5207e76bcf7e3cb31c15fd1ac2e80b94cd1f1" and "2907da6d9d4d55d08c37df4eb6a90c84ec1a3d16" have entirely different histories.
f9a5207e76
...
2907da6d9d
|
@ -9,7 +9,7 @@ return {
|
|||
vim.keymap.set(
|
||||
"n",
|
||||
"<leader>sm",
|
||||
"<cmd>vsplit<CR><cmd>DevdocsOpenCurrent<CR>",
|
||||
"<cmd>vnew<CR><cmd>DevdocsOpenCurrent<CR>",
|
||||
{ desc = "[S]earch the Friendly [M]anual" }
|
||||
)
|
||||
end,
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
gsettings set org.cinnamon.desktop.keybindings custom-list \
|
||||
"['custom0', \
|
||||
'custom1', \
|
||||
'custom2', \
|
||||
'custom3', \
|
||||
'custom4']"
|
||||
|
||||
|
||||
set(){
|
||||
|
||||
gsettings set org.cinnamon.desktop.keybindings.custom-keybinding:/org/cinnamon/desktop/keybindings/custom-keybindings/custom${1}/ name "${2}"
|
||||
gsettings set org.cinnamon.desktop.keybindings.custom-keybinding:/org/cinnamon/desktop/keybindings/custom-keybindings/custom${1}/ command "${3}"
|
||||
gsettings set org.cinnamon.desktop.keybindings.custom-keybinding:/org/cinnamon/desktop/keybindings/custom-keybindings/custom${1}/ binding "${4}"
|
||||
}
|
||||
|
||||
## Terminal
|
||||
set 0 "Toggle terminal transparency" "${HOME}/scripts/toggle-term-transparency.sh" "['<Primary>dead_acute']"
|
||||
## BG
|
||||
set 1 "Toggle bg" "${HOME}/scripts/switch-bg.sh t" "['<Primary>ccedilla']"
|
||||
|
||||
##NOTE: Cinnamon has to be restarted (ctrl+alt+esc) before these changes will take effect.
|
|
@ -0,0 +1,3 @@
|
|||
#! /usr/bin/bash
|
||||
gsettings set org.cinnamon.desktop.background.slideshow slideshow-enabled true
|
||||
gsettings set org.cinnamon.desktop.background.slideshow image-source "directory:///home/andrzej/bgs/chsck/"
|
|
@ -1 +0,0 @@
|
|||
../keybindings.sh
|
Loading…
Reference in New Issue