alpha
Login
or
Join now
j3s.sh
/
dotfiles
Star
0
Fork
0
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
0
Fork
0
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
*
author
Jes Olson
date
3 years ago
(Mar 11, 2023, 9:38 PM -0800)
commit
3a39f38d
3a39f38d1df8f17f32523d0174fe990bbf3fbdff
parent
a6240fc4
a6240fc4b493c62c453833debb7fd1c1a1218517
+7
-4
2 changed files
Expand all
Collapse all
Unified
Split
.profile
bin
vol
+1
-1
.profile
Reviewed
···
5
5
export GDK_BACKEND=wayland
6
6
# https://wiki.archlinux.org/title/Firefox#Applications_on_Wayland_can_not_launch_Firefox
7
7
export MOZ_DBUS_REMOTE=1
8
8
-
export XDG_CURRENT_DESKTOP=sway
8
8
+
# export XDG_CURRENT_DESKTOP=sway
9
9
10
10
# DO
11
11
export CHEF_USER_NAME=jolson
+6
-3
bin/vol
Reviewed
···
1
1
-
#!/bin/sh -e
1
1
+
#!/bin/sh
2
2
+
#
3
3
+
# simple pulse wrapper for controlling volume
2
4
#
3
3
-
# simple pulse wrapper for controlling
4
4
-
# audio stuff i care about
5
5
+
# deps:
6
6
+
# - pactl
7
7
+
# - notify-send
5
8
6
9
get_current_volume_percent() {
7
10
percent="$(pactl get-sink-volume @DEFAULT_SINK@ | awk '/Volume/ {print $5}')"