Not work kill signal command keybind in i3-wm

வணக்கம்
நான் i3-wm linuxmint distro பயன்படுத்துகிறேன்.
நான் kill command பயன்படுத்தி keybind ஒன்று set செய்தேன் ஆனால் வேலை செய்யவில்லை

mode "firefox"{
     bindsym f exec --no-startup-id "kill -s SIGSTOP $(pgrep firefox)", mode "default"
     bindsym n exec --no-startup-id "kill -s SIGCONT $(pgrep firefox)", mode "default"
     bindsym Escape mode "default"
}
bindsym $mod+m mode "firefox"

இதை தனியாக terminal-யில் இயக்கினால் வேலை செய்கிறது.

இதை தனியாக terminal-யில் இயக்கினால் வேலை செய்கிறது

எப்படி தனியாக இயக்கும்போது சரியாக வேலை செய்கின்றது என்று கூறினால் மேலும் உதவியாக இருக்கும்.


mode "firefox" {
     bindsym f exec --no-startup-id "pgrep firefox | xargs kill -s SIGSTOP"; mode "default"
     bindsym n exec --no-startup-id "pgrep firefox | xargs kill -s SIGCONT"; mode "default"
     bindsym Escape mode "default"
}
bindsym $mod+m mode "firefox"

இதை முயற்சித்து பார்க்கவும்.

நன்றி இப்போது வேலை செய்கிறது :slight_smile:

மகிழ்ச்சி

1 Like