Skip to content

Instantly share code, notes, and snippets.

View elhenro's full-sized avatar

Henry Schober elhenro

View GitHub Profile
# Shadow
shadow = true; # Enabled client-side shadows on windows.
no-dock-shadow = true; # Avoid drawing shadows on dock/panel windows.
no-dnd-shadow = true; # Don't draw shadows on DND windows.
clear-shadow = true; # Zero the part of the shadow's mask behind the
# window. Fix some weirdness with ARGB windows.
shadow-radius = 7; # The blur radius for shadows. (default 12)
shadow-offset-x = -7; # The left offset for shadows. (default -15)
shadow-offset-y = -7; # The top offset for shadows. (default -15)
shadow-opacity = 0.7; # The translucency for shadows. (default .75)
@elhenro
elhenro / rofi config
Created June 18, 2019 13:33
~/.config/rofi/config
rofi.combi-modi: window,drun,ssh
rofi.theme: sidebar
rofi.font: hack 10
rofi.modi: combi
rofi.kb-row-up: Up,Control+k,Shift+Tab,Shift+ISO_Left_Tab
rofi.kb-row-down: Down,Control+j
rofi.kb-accept-entry: Control+m,Return,KP_Enter
rofi.terminal: mate-terminal
rofi.kb-remove-to-eol: Control+Shift+e
rofi.kb-mode-next: Shift+Right,Control+Tab,Control+l
shadow = true;
no-dock-shadow = true;
no-dnd-shadow = true;
clear-shadow = true
shadow-radius = 7;
shadow-offset-x = -7;
shadow-offset-y = -7;
shadow-opacity = 0.7;
# shadow-red = 0.0;
# shadow-green = 0.0;
@elhenro
elhenro / termite config
Created June 25, 2019 08:26
colors from spacecamp vim colorscheme
[colors]
cursor = #F66100
cursor_foreground = #CF73E6
highlight = #F66100
color0 = #91AADF
color1 = #F66100
color2 = #F0D50C
color3 = #DEDEDE
color4 = #F66100
color5 = #91AADF
@elhenro
elhenro / termite config
Created June 25, 2019 08:26
colors from spacecamp vim colorscheme
[colors]
cursor = #F66100
cursor_foreground = #CF73E6
highlight = #F66100
color0 = #91AADF
color1 = #F66100
color2 = #F0D50C
color3 = #DEDEDE
color4 = #F66100
color5 = #91AADF
how to fix sound archlinux asus c302ca
1. `dsp_fw_release.bin` has to point to `/lib/firmware/intel/dsp_fw_release_v969.bin`
2. in `/usr/share/alsa/ucm/sklnau8825max`:
## `HiFi.conf`
```
@elhenro
elhenro / cloudSettings
Last active November 25, 2020 12:04 — forked from jdelibas/cloudSettings
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-11-25T11:49:08.241Z","extensionVersion":"v3.4.3"}
@elhenro
elhenro / .yabairc
Created June 15, 2022 20:19
simple i3 like yabairc
#!/usr/bin/env sh
yabai -m config mouse_follows_focus on
yabai -m config focus_follows_mouse autofocus
yabai -m config window_origin_display default
yabai -m config window_placement second_child
yabai -m config window_topmost off
yabai -m config window_shadow on
yabai -m config window_opacity off
#yabai -m config window_opacity_duration 0.0
yabai -m config active_window_opacity 1.0
@elhenro
elhenro / .skhdrc
Created June 15, 2022 20:20
simple i3 like skhdrc for yabai
# switch workspaces
alt - 1 : yabai -m space --focus 1
alt - 2 : yabai -m space --focus 2
alt - 3 : yabai -m space --focus 3
alt - 4 : yabai -m space --focus 4
alt - 5 : yabai -m space --focus 5
# toggle window float to ignore tiling
alt - f : yabai -m window --toggle float
@elhenro
elhenro / .zshrc
Last active January 24, 2023 21:56
zsh ctrl+x shortcut to select scripts to paste into command line (without executing!)
# .. put into ~/.zshrc
# to extend directories, symlinks can be created in ~/scripts/.. (`ln -s`)
fzf-paste-input() {
location=$(pwd)
cd ~/scripts
local output
# basic
#output=~/scripts/$(fzf</dev/tty) && LBUFFER+=${(q-)output}