Emin Umut Gerçek

Results 22 comments of Emin Umut Gerçek

Hi, > I would prefer it to be accessible by the left hand Excellent point! > "sG" - search google in background. `sG` is used for "Open OmniBar with selected...

`q` is ok for ergonomics, but removing `q` as a search alias is a bit problematic. Can we bind the space key?

I've wanted this for a long time. I use [Video Speed Controller](https://github.com/igrigorik/videospeed) it's an awesome extension, but its keys are not very well suited with any vim-like extension. For example,...

If I choose `Use system title bar and borders` from settings, Chrome shows the title of the page and `-Google Chrome` by default. ![image](https://user-images.githubusercontent.com/58051033/176768747-0bc7178e-b65c-42c9-a113-fe179256b7a5.png) ![image](https://user-images.githubusercontent.com/58051033/176769332-0a767934-0a7d-4062-80c4-f85c8baad3dc.png) To change the title you...

Once I wanted this, then I forget.... I'll try to implement it.

You can use `mapkey` ```js // Bind to g H api.mapkey('gH', 'Say Hi', function() { //Your code alert("Hi"); }); ``` API is [here](https://github.com/brookhong/Surfingkeys/blob/master/docs/API.md#mapkey)

You can use [CSS color preference](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) with [`settings.theme={...}`](https://github.com/brookhong/Surfingkeys/wiki/Color-Themes). For example, below uses solarized-dark on dark preference, zenbonse on light preference ```js solarizedDark = ` .sk_theme { background: #100a14dd; color: #4f97d7;...

Solves #97 ![image](https://user-images.githubusercontent.com/58051033/153774179-2ed57b4b-dba3-449b-80d0-44d4106f8f43.png)

I [use](https://github.com/eugercek/dotfiles/blob/master/surfingkeys.js#L102-L106) ```js api.mapkey(";c", "Copy title and url for org mode", () => { let url = document.URL; let title = document.title; api.Clipboard.write(`[[${url}][${title}]]`); }); ``` for copying into org-mode, similar...

Totally forgot this, will look at weekend.