127 lines
2.7 KiB
PkgConfig
Raw Normal View History

#
# ██ ██ ██
# ░██ ░██ ░██
# ██████ ██ ██░██ ░██ ██ ░██
# ██░░░░ ░░██ ██ ░██████ ░██ ██ ██████
# ░░█████ ░░███ ░██░░░██░████ ██░░░██
# ░░░░░██ ██░██ ░██ ░██░██░██ ░██ ░██
# ██████ ██ ░░██░██ ░██░██░░██░░██████
# ░░░░░░ ░░ ░░ ░░ ░░ ░░ ░░ ░░░░░░
#
# --- config for pc ---
#~~~~~~
# APPS
#~~~~~~
# qutebrowser
super + b
qutebrowser
# st
super + Return
2020-03-21 20:13:21 +01:00
st
# vifm
super + r
st -e vifm
2020-03-18 11:13:49 +01:00
# fzf
super + f
2020-03-18 11:23:00 +01:00
st -e zsh -c 'vifm "$(find . -type d | fzf)";'
# rofi
super + d
rofi -show drun
2020-03-18 11:13:49 +01:00
# neomutt
2020-03-21 20:13:21 +01:00
XF86Mail
2020-03-18 11:13:49 +01:00
st -e neomutt
2020-03-21 20:13:21 +01:00
super + g
2020-03-18 11:13:49 +01:00
st -e neomutt
#~~~~~~~~~
# SCRIPTS
#~~~~~~~~~
# direct search
super + o
$SCRD/websearch
# screenshot
Print
$SCRD/screenshot
# rofi-keepassxc
super + p
$SCRD/rofi-keepassxc/rofi-keepassxc -d ~/Passwords/keepass.kdbx
# clipmenu
super + c
clipmenu
# mpdmenu
super + m
2020-03-17 12:09:58 +01:00
$SCRD/mpdmenu/mpdmenu -a
XF86Tools
2020-03-17 12:09:58 +01:00
$SCRD/mpdmenu/mpdmenu -a
# lock
super + x
$SCRD/lockscreen
# powermenu
super + z
$SCRD/powermenu
End
$SCRD/powermenu
# update
super + u
$SCRD/updater
# rofi-todo
super + n
$SCRD/rofi-todo/rofi-todo.py -f $HOME/Notes/notes.json
2020-03-23 20:01:17 +01:00
# kaomoji-rofi
super + e
$SCRD/kaomoji-rofi/kaomoji.sh
# themeswitcher
super + v
$SCRD/themeswitcher
#~~~~~~~~~~~~
# WM CONTROL
#~~~~~~~~~~~~
# Reload configs & autostart apps
super + Escape
bspc wm -r
# Kill app
super + {_,shift + }q
bspc node -{c,k}
# Set the window state
2020-03-18 11:13:49 +01:00
super + {t,shift + t,s}
bspc node -t {tiled,pseudo_tiled,floating}
# Focus the node in the given direction
super + {_,shift + }{h,j,k,l}
bspc node -{f,s} {west,south,north,east}
# Focus or send to the given desktop
super + {_,shift + }{1-9,0}
bspc {desktop -f,node -d} '^{1-9,10}'
# Expand a window by moving one of its side outward
super + alt + {h,j,k,l}
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
# Contract a window by moving one of its side inward
super + ctrl + {h,j,k,l}
bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
# Move a floating window
super + {Left,Down,Up,Right}
bspc node -v {-20 0,0 20,0 -20,20 0}
#~~~~~~~
# AUDIO
#~~~~~~~
# Mute
XF86AudioMute
amixer sset Master toggle
# Volume control
XF86Audio{Raise,Lower}Volume
amixer sset Master 5%{+,-}
# Songs control
XF86Audio{Next,Prev}
mpc {next,prev}
# Pause/play
XF86AudioPlay
mpc toggle
# Stop
XF86AudioStop
mpc stop