mirror of
				https://github.com/ItsDrike/dotfiles.git
				synced 2025-11-04 01:16:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			306 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			306 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# shellcheck source=include
 | 
						|
source "./scripts/include"
 | 
						|
 | 
						|
if [ "$1" = "--switch" ]; then
 | 
						|
  hyprctl dispatch workspace "$2" >/dev/null
 | 
						|
elif [ "$1" = "--loop" ]; then
 | 
						|
  hyprland_ipc "workspace|createworkspace|destroyworkspace" | ./scripts/workspaces.py "$@"
 | 
						|
else
 | 
						|
  ./scripts/workspaces.py "$@"
 | 
						|
fi
 |