Signed-off-by: Skylar "The Cobra" Widulski <cobra@vern.cc>
This commit is contained in:
Skylar "The Cobra" Widulski 2023-12-02 17:32:35 -05:00
parent 9732c6371b
commit 63eba7bed6
Signed by: cobra
GPG Key ID: 4FD8F812083FF6F9
5 changed files with 39 additions and 3 deletions

View File

@ -173,7 +173,7 @@ __ssh() {
}
__guix_env() {
local re='[\\(]?\\(\"([a-z]*)\"$'
local re='[\\(]?\\(\"([0-9a-z-]*)\"$'
if [[ \"$GUIX_ENVIRONMENT\" ]]; then
local PACKAGES=($(while read -r line; do
[[ \"$line\" =~ $re ]] && printf '%s ' \"${BASH_REMATCH[1]}\"

View File

@ -511,6 +511,14 @@ bindsym $mod+9 workspace number 9
bindsym $mod+0 workspace number 10
bindsym $mod+mod1+1 workspace number 11
bindsym $mod+mod1+2 workspace number 12
bindsym $mod+mod1+3 workspace number 13
bindsym $mod+mod1+4 workspace number 14
bindsym $mod+mod1+5 workspace number 15
bindsym $mod+mod1+6 workspace number 16
bindsym $mod+mod1+7 workspace number 17
bindsym $mod+mod1+8 workspace number 18
bindsym $mod+mod1+9 workspace number 19
bindsym $mod+mod1+0 workspace number 20
# Move focused container to workspace
bindsym $mod+Shift+1 move container to workspace number 1
bindsym $mod+Shift+2 move container to workspace number 2
@ -522,6 +530,16 @@ bindsym $mod+Shift+7 move container to workspace number 7
bindsym $mod+Shift+8 move container to workspace number 8
bindsym $mod+Shift+9 move container to workspace number 9
bindsym $mod+Shift+0 move container to workspace number 10
bindsym $mod+Shift+mod1+1 move container to workspace number 11
bindsym $mod+Shift+mod1+2 move container to workspace number 12
bindsym $mod+Shift+mod1+3 move container to workspace number 13
bindsym $mod+Shift+mod1+4 move container to workspace number 14
bindsym $mod+Shift+mod1+5 move container to workspace number 15
bindsym $mod+Shift+mod1+6 move container to workspace number 16
bindsym $mod+Shift+mod1+7 move container to workspace number 17
bindsym $mod+Shift+mod1+8 move container to workspace number 18
bindsym $mod+Shift+mod1+9 move container to workspace number 19
bindsym $mod+Shift+mod1+0 move container to workspace number 20
# Layout stuff:
bindsym $mod+b splith

View File

@ -112,7 +112,7 @@
"gimp"
"handbrake"
"imagemagick"
"kodi"
;"kodi"
"mpv"
"mpv-mpris"
"reptyr"

View File

@ -85,6 +85,14 @@ bindsym $mod+9 workspace number 9
bindsym $mod+0 workspace number 10
bindsym $mod+mod1+1 workspace number 11
bindsym $mod+mod1+2 workspace number 12
bindsym $mod+mod1+3 workspace number 13
bindsym $mod+mod1+4 workspace number 14
bindsym $mod+mod1+5 workspace number 15
bindsym $mod+mod1+6 workspace number 16
bindsym $mod+mod1+7 workspace number 17
bindsym $mod+mod1+8 workspace number 18
bindsym $mod+mod1+9 workspace number 19
bindsym $mod+mod1+0 workspace number 20
# Move focused container to workspace
bindsym $mod+Shift+1 move container to workspace number 1
bindsym $mod+Shift+2 move container to workspace number 2
@ -96,6 +104,16 @@ bindsym $mod+Shift+7 move container to workspace number 7
bindsym $mod+Shift+8 move container to workspace number 8
bindsym $mod+Shift+9 move container to workspace number 9
bindsym $mod+Shift+0 move container to workspace number 10
bindsym $mod+Shift+mod1+1 move container to workspace number 11
bindsym $mod+Shift+mod1+2 move container to workspace number 12
bindsym $mod+Shift+mod1+3 move container to workspace number 13
bindsym $mod+Shift+mod1+4 move container to workspace number 14
bindsym $mod+Shift+mod1+5 move container to workspace number 15
bindsym $mod+Shift+mod1+6 move container to workspace number 16
bindsym $mod+Shift+mod1+7 move container to workspace number 17
bindsym $mod+Shift+mod1+8 move container to workspace number 18
bindsym $mod+Shift+mod1+9 move container to workspace number 19
bindsym $mod+Shift+mod1+0 move container to workspace number 20
# Layout stuff:
bindsym $mod+b splith

View File

@ -114,7 +114,7 @@ __ssh() {
}
__guix_env() {
local re='[\(]?\("([a-z]*)"$'
local re='[\(]?\("([0-9a-z-]*)"$'
if [[ "$GUIX_ENVIRONMENT" ]]; then
local PACKAGES=($(while read -r line; do
[[ "$line" =~ $re ]] && printf '%s ' "${BASH_REMATCH[1]}"