26 lines
		
	
	
		
			314 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			314 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
| #!/bin/bash
 | |
| 
 | |
| killNC="$(swaync-client -cp)"
 | |
| 
 | |
| logout(){
 | |
|     loginctl terminate-session "${XDG_SESSION_ID-}"
 | |
| }
 | |
| 
 | |
| screenshot() {
 | |
|     "$killNC"
 | |
|     hyprctl dispatch -- exec hyprland-interactive-screenshot
 | |
| }
 | |
| 
 | |
| wifi(){
 | |
|     "$killNC"
 | |
|     wofi-wifi-menu
 | |
| }
 | |
| 
 | |
| bluetooth(){
 | |
|     "$killNC"
 | |
|     wofi-bluetooth
 | |
| }
 | |
| 
 | |
| nwg-look(){
 | |
|     s
 | |
| } |