mirror of
https://github.com/shokinn/.files.git
synced 2025-06-28 07:40:40 +00:00
Update a lot of my dotfiles regarding my new configuration: <https://docs.pphg.tech/hardware/dell_xps_15_9560/dell_xps_15_9560_arch_linux_base/> and <https://docs.pphg.tech/hardware/dell_xps_15_9560/dell_xps_15_9560_arch_linux_bspwm_in_xfce/>
This commit is contained in:
parent
4cbe1b6a2c
commit
9bea44174c
13 changed files with 600 additions and 103 deletions
|
@ -6,9 +6,9 @@
|
|||
# bspwm hotkeys
|
||||
##
|
||||
|
||||
# Kill bspwm & polybar
|
||||
# Kill open logout menu
|
||||
super + alt + Escape
|
||||
bspc quit 1 && pkill -x polybar
|
||||
xfce4-session-logout
|
||||
|
||||
# Switch to desktop
|
||||
ctrl + alt + {Left,Right}
|
||||
|
@ -46,6 +46,40 @@ super + {s,f,t}
|
|||
super + w
|
||||
bspc node -c
|
||||
|
||||
# === function keys ===
|
||||
|
||||
# rotate windows
|
||||
F1
|
||||
bspc node @/ -R 90
|
||||
|
||||
# circulate windows
|
||||
F2
|
||||
bspc node @/ -C forward
|
||||
|
||||
# flip windows horizontal
|
||||
F3
|
||||
bspc node @/ -F horizontal
|
||||
|
||||
# flip windows vertical
|
||||
F4
|
||||
bspc node @/ -F vertical
|
||||
|
||||
# alternate between the tiled and monocle layout
|
||||
F5
|
||||
bspc desktop -l next
|
||||
|
||||
# balance windows
|
||||
F6
|
||||
bspc node @/ -B
|
||||
|
||||
# Change window gap
|
||||
{F7,F8}
|
||||
bspc config -d focused window_gap $((`bspc config -d focused window_gap` {+,-} 2 ))
|
||||
|
||||
# set the window state
|
||||
{F9,F10,F11,F12}
|
||||
bspc node -t {floating,tiled,pseudo_tiled,fullscreen}
|
||||
|
||||
# Select desktop layout (monocle|tiled)
|
||||
# TODO, why sould I use this?
|
||||
#super + l
|
||||
|
@ -56,13 +90,21 @@ super + w
|
|||
# wm independent hotkeys
|
||||
##
|
||||
|
||||
# Start dmenu
|
||||
# Start rofi program launcher
|
||||
super + space
|
||||
dmenu_run
|
||||
rofi -show drun
|
||||
|
||||
# Start urxvt terminal
|
||||
# Start xfce4 terminal
|
||||
super + Return
|
||||
urxvt
|
||||
xfce4-terminal
|
||||
|
||||
# rofi window changer
|
||||
alt + Tab
|
||||
rofi -show window
|
||||
|
||||
# Filemanager (thunar)
|
||||
super + e
|
||||
nemo
|
||||
|
||||
# Lower,Raise Volume Master
|
||||
{_,shift + }XF86Audio{Lower,Raise}Volume
|
||||
|
@ -74,13 +116,14 @@ XF86AudioMute
|
|||
|
||||
# Modify LCD Brightness
|
||||
# XF86MonBrightness{Down,Up} are the Display Birghtness Keys
|
||||
{_,shift + }XF86MonBrightness{Down,Up}
|
||||
xbacklight {-1,-10,+1,+10}
|
||||
# Not needed anymore. Is handled by xfce
|
||||
#{_,shift + }XF86MonBrightness{Down,Up}
|
||||
# xbacklight {-1,-10,+1,+10}
|
||||
|
||||
# Screenlock via slim
|
||||
#ctrl + alt + l
|
||||
super + l
|
||||
$HOME/.config/bspwm/lock.sh
|
||||
xflock4
|
||||
|
||||
# Lock & Suspend System (keep RAM in physical RAM)
|
||||
ctrl + alt + BackSpace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue