forge
login
or
join now
j3s.sh
/
dotfiles
star
2
fork
atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
my dotz
star
2
fork
atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
overview
issues
pulls
pipelines
*
j3s
5 years ago
50cbc6e1
a768c766
+12
-4
2 changed files
expand all
collapse all
unified
split
.config
sway
config
bin
vpm
+9
-4
.config/sway/config
reviewed
···
36
36
#
37
37
# Example configuration:
38
38
#
39
39
-
# exec swayidle -w \
40
40
-
# timeout 300 'swaylock -f -c 000000' \
41
41
-
# timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
42
42
-
# before-sleep 'swaylock -f -c 000000'
39
39
+
#exec swayidle -w \
40
40
+
# timeout 300 'swaylock -f -c 000000' \
41
41
+
# timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
42
42
+
# before-sleep 'swaylock -f -c 000000'
43
43
#
44
44
# This will lock your screen after 300 seconds of inactivity, then turn off
45
45
# your displays after another 300 seconds, and turn your screens back on when
···
165
165
166
166
# Move focus to the parent container
167
167
# bindsym $mod+a focus parent
168
168
+
169
169
+
# Float config
170
170
+
# use swaymsg -t get_tree to find class or app_id
171
171
+
for_window [class="Steam"] floating enable
172
172
+
for_window [class="Mumble"] floating enable
168
173
#
169
174
# Scratchpad:
170
175
#
+3
bin/vpm
reviewed
···
4
4
install)
5
5
xbps-install -S "$2"
6
6
;;
7
7
+
reinstall)
8
8
+
xbps-install -f "$2"
9
9
+
;;
7
10
remove)
8
11
xbps-remove -R "$2"
9
12
;;