Change i3exit script to be compatible with bspwm.

Add camelcamelcamel binding to qutebrowser
This commit is contained in:
Thomas Dehaeze 2019-12-29 15:11:49 +01:00
parent 81cbe1bcfb
commit e0bb101455
4 changed files with 47 additions and 45 deletions

View File

@ -464,29 +464,27 @@ mode=bookmarks main
#+begin_src bash #+begin_src bash
# with openrc use loginctl # with openrc use loginctl
[[ $(cat /proc/1/comm) == "systemd" ]] && logind=systemctl || logind=loginctl
case "$1" in case "$1" in
lock) lock)
~/scripts/lockscreen.sh ~/scripts/lockscreen.sh
;; ;;
logout) logout)
i3-msg exit loginctl terminate-session `loginctl session-status | head -n 1 | awk '{print $1}'`
;; ;;
switch_user) switch_user)
dm-tool switch-to-greeter dm-tool switch-to-greeter
;; ;;
suspend) suspend)
$logind suspend && ~/scripts/lockscreen.sh systemctl suspend && ~/scripts/lockscreen.sh
;; ;;
hibernate) hibernate)
$logind hibernate && ~/scripts/lockscreen.sh systemctl hibernate && ~/scripts/lockscreen.sh
;; ;;
reboot) reboot)
$logind reboot systemctl reboot
;; ;;
shutdown) shutdown)
$logind poweroff systemctl poweroff
;; ;;
,*) ,*)
echo "== ! i3exit: missing or invalid argument ! ==" echo "== ! i3exit: missing or invalid argument ! =="

View File

@ -937,11 +937,15 @@ c.url.start_pages = ['https://start.duckduckgo.com']
#+end_src #+end_src
*** Annotate with Hypothesis *** Annotate with Hypothesis
#+begin_src conf #+begin_src conf
config.bind(',a', "jseval javascript:(function(){window.hypothesisConfig=function(){return{showHighlights:true,appType:'bookmarklet'};};var d=document,s=d.createElement('script');s.setAttribute('src','https://hypothes.is/embed.js');d.body.appendChild(s)})();") config.bind(',a', "jseval javascript:(function(){window.hypothesisConfig=function(){return{showHighlights:true,appType:'bookmarklet'};};var d=document,s=d.createElement('script');s.setAttribute('src','https://hypothes.is/embed.js');d.body.appendChild(s)})();")
#+end_src #+end_src
*** See price in CamelCamelCamel
#+begin_src conf
config.bind(',P', ":open -t https://fr.camelcamelcamel.com/search?sq={url}")
#+end_src
* Userscripts * Userscripts
** Cast Youtube to Chromecast ** Cast Youtube to Chromecast
:PROPERTIES: :PROPERTIES: