Browse Source

removal of extra # to align with new hyprlang requirement. Credit goes to @@Ryuuyas

pull/176/head
Ja.KooLit 2 years ago
parent
commit
d254d3d0b6
  1. 2
      config/cava/config
  2. 2
      config/hypr/UserScripts/Sounds.sh
  3. 2
      config/hypr/UserScripts/WallpaperAutoChange.sh
  4. 2
      config/hypr/UserScripts/WallpaperRandom.sh
  5. 2
      config/hypr/UserScripts/WallpaperSelect.sh
  6. 2
      config/hypr/UserScripts/Weather.py
  7. 2
      config/hypr/scripts/AirplaneMode.sh
  8. 2
      config/hypr/scripts/Brightness.sh
  9. 2
      config/hypr/scripts/BrightnessKbd.sh
  10. 4
      config/hypr/scripts/ChangeBlur.sh
  11. 2
      config/hypr/scripts/ChangeLayout.sh
  12. 2
      config/hypr/scripts/ClipManager.sh
  13. 2
      config/hypr/scripts/DarkLight.sh
  14. 2
      config/hypr/scripts/GameMode.sh
  15. 2
      config/hypr/scripts/KeyHints.sh
  16. 2
      config/hypr/scripts/LockScreen.sh
  17. 2
      config/hypr/scripts/MediaCtrl.sh
  18. 2
      config/hypr/scripts/Polkit-NixOS.sh
  19. 2
      config/hypr/scripts/Polkit.sh
  20. 2
      config/hypr/scripts/PortalHyprland.sh
  21. 2
      config/hypr/scripts/PywalSwww.sh
  22. 2
      config/hypr/scripts/Refresh.sh
  23. 2
      config/hypr/scripts/RefreshNoWaybar.sh
  24. 4
      config/hypr/scripts/RofiEmoji.sh
  25. 2
      config/hypr/scripts/ScreenShot.sh
  26. 2
      config/hypr/scripts/SwitchKeyboardLayout.sh
  27. 2
      config/hypr/scripts/TouchPad.sh
  28. 2
      config/hypr/scripts/Volume.sh
  29. 2
      config/hypr/scripts/WaybarCava.sh
  30. 2
      config/hypr/scripts/WaybarLayout.sh
  31. 2
      config/hypr/scripts/WaybarStyles.sh
  32. 2
      config/hypr/scripts/Wlogout.sh

2
config/cava/config

@ -1,4 +1,4 @@
## Configuration file for CAVA. Default values are commented out. Use either ';' or '#' for commenting. # Configuration file for CAVA. Default values are commented out. Use either ';' or '#' for commenting.
[general] [general]

2
config/hypr/UserScripts/Sounds.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# This script is used to play system sounds. # This script is used to play system sounds.
theme="freedesktop" # Set the theme for the system sounds. theme="freedesktop" # Set the theme for the system sounds.

2
config/hypr/UserScripts/WallpaperAutoChange.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# source https://wiki.archlinux.org/title/Hyprland#Using_a_script_to_change_wallpaper_every_X_minutes # source https://wiki.archlinux.org/title/Hyprland#Using_a_script_to_change_wallpaper_every_X_minutes
# This script will randomly go through the files of a directory, setting it # This script will randomly go through the files of a directory, setting it

2
config/hypr/UserScripts/WallpaperRandom.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Script for Random Wallpaper ( CTRL ALT W) # Script for Random Wallpaper ( CTRL ALT W)
wallDIR="$HOME/Pictures/wallpapers" wallDIR="$HOME/Pictures/wallpapers"

2
config/hypr/UserScripts/WallpaperSelect.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# This script for selecting wallpapers (SUPER W) # This script for selecting wallpapers (SUPER W)
SCRIPTSDIR="$HOME/.config/hypr/scripts" SCRIPTSDIR="$HOME/.config/hypr/scripts"

2
config/hypr/UserScripts/Weather.py

@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# From https://raw.githubusercontent.com/rxyhn/dotfiles/main/home/rxyhn/modules/desktop/waybar/scripts/waybar-wttr.py # From https://raw.githubusercontent.com/rxyhn/dotfiles/main/home/rxyhn/modules/desktop/waybar/scripts/waybar-wttr.py
## ensure to insert city inside "" # ensure to insert city inside ""
city = "" city = ""
import json import json
import requests import requests

2
config/hypr/scripts/AirplaneMode.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Airplane Mode. Turning on or off all wifi using rfkill. # Airplane Mode. Turning on or off all wifi using rfkill.
notif="$HOME/.config/swaync/images/bell.png" notif="$HOME/.config/swaync/images/bell.png"

2
config/hypr/scripts/Brightness.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Script for Monitor backlights (if supported) using brightnessctl # Script for Monitor backlights (if supported) using brightnessctl
iDIR="$HOME/.config/swaync/icons" iDIR="$HOME/.config/swaync/icons"

2
config/hypr/scripts/BrightnessKbd.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Script for keyboard backlights (if supported) using brightnessctl # Script for keyboard backlights (if supported) using brightnessctl
iDIR="$HOME/.config/swaync/icons" iDIR="$HOME/.config/swaync/icons"

4
config/hypr/scripts/ChangeBlur.sh

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
## Script for changing blurs on the fly # Script for changing blurs on the fly
notif="$HOME/.config/swaync/images/bell.png" notif="$HOME/.config/swaync/images/bell.png"

2
config/hypr/scripts/ChangeLayout.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# for changing Hyprland Layouts (Master or Dwindle) on the fly # for changing Hyprland Layouts (Master or Dwindle) on the fly
notif="$HOME/.config/swaync/images/bell.png" notif="$HOME/.config/swaync/images/bell.png"

2
config/hypr/scripts/ClipManager.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Clipboard Manager. This script uses cliphist, rofi, and wl-copy. # Clipboard Manager. This script uses cliphist, rofi, and wl-copy.
# Actions: # Actions:

2
config/hypr/scripts/DarkLight.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# For Dark and Light switching # For Dark and Light switching
# Note: Scripts are looking for keywords Light or Dark except for wallpapers as the are in a separate folders # Note: Scripts are looking for keywords Light or Dark except for wallpapers as the are in a separate folders

2
config/hypr/scripts/GameMode.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Game Mode. Turning off all animations # Game Mode. Turning off all animations
notif="$HOME/.config/swaync/images/bell.png" notif="$HOME/.config/swaync/images/bell.png"

2
config/hypr/scripts/KeyHints.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Keyhints. Idea got from Garuda Hyprland # Keyhints. Idea got from Garuda Hyprland
# Detect monitor resolution and scale # Detect monitor resolution and scale

2
config/hypr/scripts/LockScreen.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# For Swaylock # For Swaylock
CONFIG="$HOME/.config/swaylock/config" CONFIG="$HOME/.config/swaylock/config"

2
config/hypr/scripts/MediaCtrl.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Playerctl # Playerctl
music_icon="$HOME/.config/swaync/icons/music.png" music_icon="$HOME/.config/swaync/icons/music.png"

2
config/hypr/scripts/Polkit-NixOS.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# For NixOS starting of polkit-gnome. Dec 2023, the settings stated in NixOS wiki does not work so have to manual start it # For NixOS starting of polkit-gnome. Dec 2023, the settings stated in NixOS wiki does not work so have to manual start it
# Find all polkit-gnome executables in the Nix store # Find all polkit-gnome executables in the Nix store

2
config/hypr/scripts/Polkit.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# This is for polkits, it will start from top and will stop if the top is executed # This is for polkits, it will start from top and will stop if the top is executed
# Polkit possible paths files to check # Polkit possible paths files to check

2
config/hypr/scripts/PortalHyprland.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# For manually starting xdg-desktop-portal # For manually starting xdg-desktop-portal
sleep 1 sleep 1

2
config/hypr/scripts/PywalSwww.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Pywal Colors for current wallpaper # Pywal Colors for current wallpaper
# Define the path to the swww cache directory # Define the path to the swww cache directory

2
config/hypr/scripts/Refresh.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Scripts for refreshing waybar, rofi, swaync, pywal colors # Scripts for refreshing waybar, rofi, swaync, pywal colors
SCRIPTSDIR=$HOME/.config/hypr/scripts SCRIPTSDIR=$HOME/.config/hypr/scripts

2
config/hypr/scripts/RefreshNoWaybar.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Modified version of Refresh but no waybar refresh # Modified version of Refresh but no waybar refresh
# Used by automatic wallpaper change # Used by automatic wallpaper change

4
config/hypr/scripts/RofiEmoji.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Rofi Emoticons. Not my own. Cant remember the source # Rofi Emoticons. Not my own. Cant remember the source
sed '1,/^### DATA ###$/d' $0 | sed '1,/^### DATA ###$/d' $0 |
@ -7,7 +7,7 @@ rofi -dmenu -config ~/.config/rofi/config-long.rasi|
cut -d ' ' -f 1 | tr -d '\n' | wl-copy cut -d ' ' -f 1 | tr -d '\n' | wl-copy
exit exit
### DATA ### # DATA #
😀 grinning face face smile happy joy :D grin 😀 grinning face face smile happy joy :D grin
😃 grinning face with big eyes face happy joy haha :D :) smile funny 😃 grinning face with big eyes face happy joy haha :D :) smile funny
😄 grinning face with smiling eyes face happy joy funny haha laugh like :D :) smile 😄 grinning face with smiling eyes face happy joy funny haha laugh like :D :) smile

2
config/hypr/scripts/ScreenShot.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Screenshots scripts # Screenshots scripts
iDIR="$HOME/.config/swaync/icons" iDIR="$HOME/.config/swaync/icons"

2
config/hypr/scripts/SwitchKeyboardLayout.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# This is for changing kb_layouts. Set kb_layouts in $settings_file # This is for changing kb_layouts. Set kb_layouts in $settings_file
layout_f="$HOME/.cache/kb_layout" layout_f="$HOME/.cache/kb_layout"

2
config/hypr/scripts/TouchPad.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# For disabling touchpad. # For disabling touchpad.
Touchpad_Device="asue1209:00-04f3:319f-touchpad" Touchpad_Device="asue1209:00-04f3:319f-touchpad"

2
config/hypr/scripts/Volume.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Scripts for volume controls for audio and mic # Scripts for volume controls for audio and mic
iDIR="$HOME/.config/swaync/icons" iDIR="$HOME/.config/swaync/icons"

2
config/hypr/scripts/WaybarCava.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Not my own work. This was added through Github PR. Credit to original author # Not my own work. This was added through Github PR. Credit to original author

2
config/hypr/scripts/WaybarLayout.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Script for waybar layout or configs # Script for waybar layout or configs
set -euo pipefail set -euo pipefail

2
config/hypr/scripts/WaybarStyles.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Script for waybar styles # Script for waybar styles
set -euo pipefail set -euo pipefail

2
config/hypr/scripts/Wlogout.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# wlogout (Power, Screen Lock, Suspend, etc) # wlogout (Power, Screen Lock, Suspend, etc)

Loading…
Cancel
Save