This commit is contained in:
KK
2026-06-27 14:27:02 +02:00
parent ac1005b842
commit a2cecfe691
5 changed files with 17 additions and 6 deletions

View File

@@ -19,7 +19,7 @@
],
"index_files": true,
// "color_scheme": "gruvbox (Light) (Soft).sublime-color-scheme",
"font_size": 11,
"font_size": 10,
"font_face": "Cascadia Code",
"theme": "Adaptive.sublime-theme",
"folder_exclude_patterns": ["external", ".svn", ".git", ".hg", "CVS", ".Trash", ".Trash-*"],

View File

@@ -237,8 +237,8 @@ bindsym $mod+r mode "resize"
# Push-to-talk: hold Caps Lock to record, release to transcribe.
# xkb_options caps:none above disables the normal Caps Lock toggle, so bind by keycode.
bindcode 66 exec sh -c 'voxtype record start; pkill -USR1 -f "$HOME/.config/sway/status.sh"'
bindcode --release 66 exec sh -c 'voxtype record stop; pkill -USR1 -f "$HOME/.config/sway/status.sh"'
# bindcode 66 exec sh -c 'voxtype record start; pkill -USR1 -f "$HOME/.config/sway/status.sh"'
# bindcode --release 66 exec sh -c 'voxtype record stop; pkill -USR1 -f "$HOME/.config/sway/status.sh"'
#
# Status Bar:

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
print_status() {
volume_info=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ 2>/dev/null)

View File

@@ -4,6 +4,9 @@
# set -g extended-keys on
# set -g extended-keys-format csi-u
# To fix ctrl-b + direction (hjkl) switching pane multiple times after hitting the direction again
set-option -g repeat-time 150
# Index windows/tabs and panes from 1 instead of 0.
set -g base-index 1
setw -g pane-base-index 1