mirror of
https://github.com/FAUSheppy/config
synced 2025-12-10 00:28:32 +01:00
Compare commits
6 Commits
972535cab9
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 52c4454da1 | |||
| c44463f933 | |||
| 88cad94e09 | |||
| e93850a185 | |||
| 87aca37c85 | |||
| eb4af4d870 |
13
.gitignore
vendored
13
.gitignore
vendored
@@ -161,3 +161,16 @@ wireshark
|
||||
*.jpeg
|
||||
*.jpg
|
||||
*.png
|
||||
|
||||
LosslessCut/
|
||||
Code/
|
||||
KDE/
|
||||
draw.io/
|
||||
helm/
|
||||
k9s/
|
||||
kde.org/
|
||||
kwritemetainfos
|
||||
openstack/
|
||||
pypoetry/
|
||||
quodlibet/
|
||||
rustdesk/
|
||||
|
||||
11
README.md
11
README.md
@@ -1,4 +1,9 @@
|
||||
You are free to use any of this for yourself, most of my config i learned or took from http://ruderich.org/simon/#config
|
||||
This is my personal config for:
|
||||
|
||||
Herbstluftwm can be found here:
|
||||
https://herbstluftwm.org/index.html
|
||||
- git
|
||||
- ssh
|
||||
- zsh
|
||||
- vim
|
||||
- herbstluft
|
||||
|
||||
..and some additional helper scripts and standard packages.
|
||||
|
||||
@@ -29,7 +29,7 @@ if [[ "$HOST" == "atlantispc" ]]; then
|
||||
fi
|
||||
|
||||
if [[ "$HOST" == "atlantisV2" ]]; then
|
||||
/usr/bin/xrandr --output DP-1 --right-of HDMI-0
|
||||
/usr/bin/xrandr --output DP-5 --right-of HDMI-0
|
||||
fi
|
||||
|
||||
### Atlantislaptop specific setup ###
|
||||
@@ -167,6 +167,10 @@ hc keybind XF86AudioMute spawn amixer set Master toggle
|
||||
hc keybind XF86AudioRaiseVolume spawn amixer set Master 10%+
|
||||
hc keybind XF86AudioLowerVolume spawn amixer set Master 10%-
|
||||
|
||||
# bluethooth
|
||||
hc keybind $Mod-b spawn ~/.config/herbstluftwm/bluethooth_connect.sh c
|
||||
hc keybind $Mod-n spawn ~/.config/herbstluftwm/bluethooth_connect.sh d
|
||||
|
||||
# theme
|
||||
hc attr theme.tiling.reset 1
|
||||
hc attr theme.floating.reset 1
|
||||
|
||||
17
herbstluftwm/bluethooth_connect.sh
Executable file
17
herbstluftwm/bluethooth_connect.sh
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
SESSION="btconnect"
|
||||
MAC="E8:9E:13:04:0A:77"
|
||||
|
||||
if [[ "$1" == "d" ]]; then
|
||||
CMD="disconnect $MAC"
|
||||
else
|
||||
CMD="connect $MAC"
|
||||
fi
|
||||
|
||||
tmux new-session -d -s "$SESSION" "bluetoothctl"
|
||||
|
||||
sleep 0.3
|
||||
|
||||
tmux send-keys -t "$SESSION" "$CMD" C-m
|
||||
tmux send-keys -t "$SESSION" C-d
|
||||
@@ -3,7 +3,7 @@ URxvt.*.foreground: #EEEEEE
|
||||
URxvt.*.scrollBar: off
|
||||
URxvt.print-pipe: true
|
||||
|
||||
URxvt.perl-ext-common: default,selection-to-clipboard,tabbed,matcher,font-size,-tabbed
|
||||
URxvt.perl-ext-common: default,selection-to-clipboard,tabbed,matcher,font-size,-tabbed,-confirm-paste
|
||||
|
||||
|
||||
URxvt.font: xft:bitstream vera sans mono:size=10:antialias=true
|
||||
@@ -16,3 +16,4 @@ URxvt.keysym.C-equal: font-size:reset
|
||||
URxvt.keysym.C-question: font-size:show
|
||||
|
||||
URxvt.iso14755 :false
|
||||
URxvt.geometry: 400x400
|
||||
|
||||
Reference in New Issue
Block a user