42 lines
		
	
	
	
		
			1,014 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1,014 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# Check to see if an emacsclient is running
 | 
						|
if [ $(pgrep -c emacsclient) -gt 0 ]; then
 | 
						|
    echo hi
 | 
						|
    
 | 
						|
    if [ "$XDG_SESSION_TYPE" = "x11" ]; then
 | 
						|
        echo X11
 | 
						|
        emacsrg=$(wmctrl -lx | rg emacs.Emacs | rg -v org-agenda | awk '{print $1}')
 | 
						|
        echo $emacsrg
 | 
						|
 | 
						|
        if [ -z $emacsrg ]; then
 | 
						|
            exec emacsclient -c &
 | 
						|
            exit
 | 
						|
        else
 | 
						|
            exec wmctrl -ia $emacsrg
 | 
						|
            exit
 | 
						|
        fi
 | 
						|
    else
 | 
						|
        if [ "$KDE_FULL_SESSION" = "true" ]; then
 | 
						|
            exec /home/chris/bin/ww -fa Emacs -c emacsclient
 | 
						|
            exit
 | 
						|
        else
 | 
						|
            echo WAYLAND
 | 
						|
            emacsrg=$(wlrctl window list | rg emacs)
 | 
						|
 | 
						|
            emacswin=$(echo $emacsrg | sed 's/.*\: //')
 | 
						|
            echo $emacswin
 | 
						|
 | 
						|
            exec wlrctl toplevel focus title:"$emacswin"
 | 
						|
            exit
 | 
						|
        fi
 | 
						|
    fi
 | 
						|
 | 
						|
else
 | 
						|
    if [ $(pgrep -c emacs) -gt 0 ]; then
 | 
						|
        alacritty -e emacs --daemon
 | 
						|
        exec emacsclient -c &
 | 
						|
    else
 | 
						|
        exec emacsclient -c &
 | 
						|
    fi
 | 
						|
fi
 |