mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2025-07-04 11:19:06 +03:00
Add submodules
This commit is contained in:
18
GitRepositories/patches/polybar-wireguard/wireguard.patch
Normal file
18
GitRepositories/patches/polybar-wireguard/wireguard.patch
Normal file
@ -0,0 +1,18 @@
|
||||
diff --git a/polybar-wireguard b/polybar-wireguard
|
||||
index 6712185..b770d44 100755
|
||||
--- a/polybar-wireguard
|
||||
+++ b/polybar-wireguard
|
||||
@@ -6,11 +6,11 @@
|
||||
# https://github.com/polybar/polybar/wiki/Formatting#format-tags-inside-polybar-config
|
||||
green=#55aa55
|
||||
|
||||
-configs_path="/PATH/TO/CONF/FILES"
|
||||
+configs_path="$HOME/.config/wireguard"
|
||||
connected_interface=$(sudo wg | grep interface | cut -d " " -f2)
|
||||
|
||||
connect() {
|
||||
- selected_config=$(ls $configs_path/*.conf | xargs basename -a -s .conf | dmenu)
|
||||
+ selected_config=$(ls $configs_path/*.conf | xargs basename -a -s .conf | rofi -i -dmenu -p "Connect to: ")
|
||||
[[ $selected_config ]] && sudo wg-quick up "$configs_path"/"$selected_config".conf
|
||||
}
|
||||
|
53
GitRepositories/patches/rofibluetooth/dontshowmenu.patch
Normal file
53
GitRepositories/patches/rofibluetooth/dontshowmenu.patch
Normal file
@ -0,0 +1,53 @@
|
||||
diff --git a/rofi-bluetooth b/rofi-bluetooth
|
||||
index 5c52fd8..cebb5c1 100755
|
||||
--- a/rofi-bluetooth
|
||||
+++ b/rofi-bluetooth
|
||||
@@ -33,7 +33,6 @@ power_on() {
|
||||
toggle_power() {
|
||||
if power_on; then
|
||||
bluetoothctl power off
|
||||
- show_menu
|
||||
else
|
||||
if rfkill list bluetooth | grep -q 'blocked: yes'; then
|
||||
rfkill unblock bluetooth && sleep 3
|
||||
@@ -59,7 +58,6 @@ toggle_scan() {
|
||||
if scan_on; then
|
||||
kill $(pgrep -f "bluetoothctl scan on")
|
||||
bluetoothctl scan off
|
||||
- show_menu
|
||||
else
|
||||
bluetoothctl scan on &
|
||||
echo "Scanning..."
|
||||
@@ -83,10 +81,8 @@ pairable_on() {
|
||||
toggle_pairable() {
|
||||
if pairable_on; then
|
||||
bluetoothctl pairable off
|
||||
- show_menu
|
||||
else
|
||||
bluetoothctl pairable on
|
||||
- show_menu
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -105,10 +101,8 @@ discoverable_on() {
|
||||
toggle_discoverable() {
|
||||
if discoverable_on; then
|
||||
bluetoothctl discoverable off
|
||||
- show_menu
|
||||
else
|
||||
bluetoothctl discoverable on
|
||||
- show_menu
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -126,10 +120,8 @@ device_connected() {
|
||||
toggle_connection() {
|
||||
if device_connected $1; then
|
||||
bluetoothctl disconnect $1
|
||||
- device_menu "$device"
|
||||
else
|
||||
bluetoothctl connect $1
|
||||
- device_menu "$device"
|
||||
fi
|
||||
}
|
||||
|
Reference in New Issue
Block a user