mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			820 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			820 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| user_commands=(
 | |
|   list-units is-active status show help list-unit-files
 | |
|   is-enabled list-jobs show-environment cat list-timers)
 | |
| 
 | |
| sudo_commands=(
 | |
|   start stop reload restart try-restart isolate kill
 | |
|   reset-failed enable disable reenable preset mask unmask
 | |
|   link load cancel set-environment unset-environment
 | |
|   edit)
 | |
| 
 | |
| for c in $user_commands; do; alias sc-$c="systemctl $c"; done
 | |
| for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done
 | |
| for c in $user_commands; do; alias scu-$c="systemctl --user $c"; done
 | |
| for c in $sudo_commands; do; alias scu-$c="systemctl --user $c"; done
 | |
| 
 | |
| alias sc-enable-now="sc-enable --now"
 | |
| alias sc-disable-now="sc-disable --now"
 | |
| alias sc-mask-now="sc-mask --now"
 | |
| 
 | |
| alias scu-enable-now="scu-enable --now"
 | |
| alias scu-disable-now="scu-disable --now"
 | |
| alias scu-mask-now="scu-mask --now"
 |