aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.scripts/i3session
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2019-10-21 22:23:00 +0300
committerYaroslav <contact@yaroslavps.com>2019-10-21 22:23:00 +0300
commitcf2c54a481a587af7639ec936e66895aa1153b4c (patch)
tree5d4204a11d3497cf4aac2b46cbe6fafe72bea29c /dotfiles/.scripts/i3session
parent99a461da7c1065c18628fbd7314a135a41d5707e (diff)
downloadswayrice-cf2c54a481a587af7639ec936e66895aa1153b4c.tar.gz
swayrice-cf2c54a481a587af7639ec936e66895aa1153b4c.zip
got rid of xorg and i3 dependencies on some scripts
Diffstat (limited to 'dotfiles/.scripts/i3session')
-rwxr-xr-xdotfiles/.scripts/i3session35
1 files changed, 0 insertions, 35 deletions
diff --git a/dotfiles/.scripts/i3session b/dotfiles/.scripts/i3session
deleted file mode 100755
index 17f99ca..0000000
--- a/dotfiles/.scripts/i3session
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# /usr/bin/i3exit
-
-# on void just sudo
-[[ $(cat /proc/1/comm) == "systemd" ]] && logind=systemctl || logind=loginctl
-
-case "$1" in
- lock)
- lock-color
- ;;
- logout)
- swaymsg exit
- ;;
- switch_user)
- dm-tool switch-to-greeter
- ;;
- suspend)
- lock-color & sleep 1 && $logind suspend
- ;;
- hibernate)
- lock-color & sleep 1 && $logind hibernate
- ;;
- reboot)
- $logind reboot
- ;;
- shutdown)
- $logind poweroff
- ;;
- *)
- echo "== ! i3exit: missing or invalid argument ! =="
- echo "Try again with: lock | logout | switch_user | suspend | hibernate | reboot | shutdown"
- exit 2
-esac
-
-exit 0