Skip to content

Commit

Permalink
update through script - 2024-05-06 09:31:05
Browse files Browse the repository at this point in the history
  • Loading branch information
oasido committed May 6, 2024
1 parent 7d82cc3 commit 42844fa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .config/i3/workspaces
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ assign [class="vesktop|discord|TelegramDesktop"] $ws9
assign [class="REAPER|Syncthing GTK"] $ws10

for_window [class="vol|ttrm|mus|fm|news"] floating enable, resize set 1000 600, move scratchpad, border pixel 0
for_window [class="crx_nngceckbapebfimnlniiiahkandclblb"] floating enable, resize set 1000 600, move scratchpad, border pixel 0 # bitwarden extension
for_window [class="crx_nngceckbapebfimnlniiiahkandclblb"] floating enable, resize set 1000 600, move scratchpad, border pixel 0 # bitwarden extension chromium
for_window [class="Pavucontrol"] floating enable, resize set width 445 px height 418 px, move position 1540 px 990 px
# for_window [class="TelegramDesktop"] resize set width 830 px
for_window [workspace=$ws9] layout tabbed
Expand Down
9 changes: 9 additions & 0 deletions .local/bin/scripts/toggle_play_pause
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

status=$(playerctl status)

if [[ "$status" == "Playing" ]]; then
playerctl pause
else
playerctl play
fi

0 comments on commit 42844fa

Please sign in to comment.