Skip to content

Instantly share code, notes, and snippets.

View ozturkkl's full-sized avatar
😜
Have a nice day!

Kemal Ozturk ozturkkl

😜
Have a nice day!
View GitHub Profile
@ozturkkl
ozturkkl / youtube_fix
Last active February 23, 2022 06:20
Youtube Shortcuts Focus Fix
// ==UserScript==
// @name Youtube Keyboard Shortcuts Fix
// @namespace https://gist.github.com/ozturkkl
// @version 1.0
// @description Will fix up arrow buttons behaving differently after changing volume or seek with mouse.
// @author Kemal Ozturk
// @include /.+youtube\.com/.*/
// @icon https://www.google.com/s2/favicons?domain=youtube.com
// @grant none
// @run-at document-start
@ozturkkl
ozturkkl / .tmux.conf
Created February 3, 2024 02:46
tmux-conf
set -g mouse on
bind-key h swap-pane -t 0
# #!/bin/bash
# # util func to send keys to all panes
# _tmux_send_keys_all_panes_ () {
# for _pane in $(tmux list-panes -F '#P'); do
# tmux send-keys -t ${_pane} "$@"