commit 9ca2f3d2deeccfc013c24902bc521595f5810ca0
Author: = <=>
Date: Mon Jan 30 08:19:14 2023 +0100
added current dotfiles for sway
diff --git a/Wallpapers/W1.jpg b/Wallpapers/W1.jpg
new file mode 100644
index 0000000..202bbe6
Binary files /dev/null and b/Wallpapers/W1.jpg differ
diff --git a/Wallpapers/W2.jpg b/Wallpapers/W2.jpg
new file mode 100644
index 0000000..4223a58
Binary files /dev/null and b/Wallpapers/W2.jpg differ
diff --git a/Wallpapers/W3.jpg b/Wallpapers/W3.jpg
new file mode 100644
index 0000000..e1b3d21
Binary files /dev/null and b/Wallpapers/W3.jpg differ
diff --git a/Wallpapers/w4.jpg b/Wallpapers/w4.jpg
new file mode 100644
index 0000000..4bccc50
Binary files /dev/null and b/Wallpapers/w4.jpg differ
diff --git a/config b/config
new file mode 100644
index 0000000..0b053af
--- /dev/null
+++ b/config
@@ -0,0 +1,282 @@
+# Default config for sway
+# Read `man 5 sway` for a complete reference.
+
+# Logo key. Use Mod1 for Alt.
+set $mod Mod4
+
+# Home row direction keys, like vim
+set $left h
+set $down j
+set $up k
+set $right l
+
+# Your preferred terminal emulator
+set $term foot
+
+#directory of this config for global script and asset location
+set $dir /home/gunalx/.config/sway
+
+# Your preferred application launcher
+# Note: pass the final command to swaymsg so that the resulting window can be opened
+# on the original workspace that the command was run on.
+set $menu dmenu_path | dmenu | xargs swaymsg exec --
+
+
+#startup
+input type:keyboard xkb_capslock disabled
+input type:keyboard xkb_numlock enabled
+
+
+#autostart applications
+#exec $dir/autostart.sh
+assign [app_id="autostart1"] workspace 1
+assign [app_id="autostart2"] workspace 2
+assign [app_id="autostart3"] workspace 3
+assign [app_id="autostart4"] workspace 4
+
+exec $term --class autostart1
+exec firefox --class autostart2
+exec code --class autostart3
+
+
+#add dynamic names/emojis to workspaces using sway-dynamic-names --found this to be really buggy with 0 indexing, and dedicating workspaces
+#exec_always --no-startup-id exec sway-dynamic-names
+
+
+#dedicate workspaces (forces them to only spawn new in their workspace)
+#assign [class="Firefox"] workspace 2
+#assign [class="Code"] workspace 3
+
+
+### Output configuration
+#
+# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
+#output * bg /usr/share/backgrounds/sway/vaporwave-Sun-mountains-1408599-2364227326.jpg fill
+#output * bg (find ./Wallpapers -type f | shuf -n 1) fill
+# output HDMI-A-1 resolution 1920x1080 position 1920,0
+exec $dir/wallpaper.sh
+
+# Idle configuration screenlocker
+#bindsym $mod+m exec ~/.config/sway/lock.sh && brightnessctl -d intel_backlight s 50%
+bindsym $mod+m exec $dir/lock.sh && brightnessctl -d intel_backlight s 50%
+exec $dir/idle.sh
+
+
+### Input configuration # You can get the names of your inputs by running: swaymsg -t get_inputs
+input "1739:30383:DELL07E6:00_06CB:76AF_Touchpad" {
+ dwt enabled
+ tap enabled
+ natural_scroll enabled
+ middle_emulation enabled
+}
+input * {
+ xkb_layout "no"
+ #xkb_variant ""
+}
+
+
+#
+### Key bindings
+#
+# Basics:
+#
+ # Start a terminal
+ bindsym $mod+Return exec $term
+
+ # Kill focused window
+ bindsym $mod+Shift+q kill
+
+ # Start your launcher
+ bindsym $mod+d exec $menu
+
+ #bind system keys:
+ bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
+ bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
+ bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
+ bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle
+ bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
+ bindsym XF86MonBrightnessUp exec brightnessctl set 5%+
+ bindsym XF86AudioPlay exec playerctl play-pause
+ bindsym XF86AudioNext exec playerctl next
+ bindsym XF86AudioPrev exec playerctl previous
+ bindsym XF86Search exec $menu
+
+
+ #screenshot
+ bindsym $mod+f11 exec /home/gunalx/.config/sway/screenshot.sh
+
+ # Alt tab window switching.
+ #bindsym $mod+tab workspace next_on_output
+ #bindsym $mod+Shift+tab workspace prev_on_output
+ bindsym Mod1+tab workspace back_and_forth
+
+ # Drag floating windows by holding down $mod and left mouse button.
+ # Resize them with right mouse button + $mod.
+ # Despite the name, also works for non-floating windows.
+ # Change normal to inverse to use left mouse button for resizing and right
+ # mouse button for dragging.
+ floating_modifier $mod normal
+
+ # Reload the configuration file
+ bindsym $mod+Shift+r reload
+
+ # Exit sway (logs you out of your Wayland session)
+ bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
+
+
+#
+# Moving around:
+#
+ # Move your focus around
+ bindsym $mod+$left focus left
+ bindsym $mod+$down focus down
+ bindsym $mod+$up focus up
+ bindsym $mod+$right focus right
+ # Or use $mod+[up|down|left|right]
+ bindsym $mod+Left focus left
+ bindsym $mod+Down focus down
+ bindsym $mod+Up focus up
+ bindsym $mod+Right focus right
+
+ # Move the focused window with the same, but add Shift
+ bindsym $mod+Shift+$left move left
+ bindsym $mod+Shift+$down move down
+ bindsym $mod+Shift+$up move up
+ bindsym $mod+Shift+$right move right
+ # Ditto, with arrow keys
+ bindsym $mod+Shift+Left move left
+ bindsym $mod+Shift+Down move down
+ bindsym $mod+Shift+Up move up
+ bindsym $mod+Shift+Right move right
+#
+# Workspaces:
+#
+ # Switch to workspace
+ #bindsym $mod+49 workspace number 0 #added to bypass problems with autonaming
+ bindsym $mod+1 workspace number 1
+ bindsym $mod+2 workspace number 2
+ bindsym $mod+3 workspace number 3
+ bindsym $mod+4 workspace number 4
+ bindsym $mod+5 workspace number 5
+ bindsym $mod+6 workspace number 6
+ bindsym $mod+7 workspace number 7
+ bindsym $mod+8 workspace number 8
+ bindsym $mod+9 workspace number 9
+ bindsym $mod+0 workspace number 0
+ # Move focused container to workspace
+ #bindsym $mod+Shift+'|' move container to workspace number 0 #like on switch
+ bindsym $mod+Shift+1 move container to workspace number 1
+ bindsym $mod+Shift+2 move container to workspace number 2
+ bindsym $mod+Shift+3 move container to workspace number 3
+ bindsym $mod+Shift+4 move container to workspace number 4
+ bindsym $mod+Shift+5 move container to workspace number 5
+ bindsym $mod+Shift+6 move container to workspace number 6
+ bindsym $mod+Shift+7 move container to workspace number 7
+ bindsym $mod+Shift+8 move container to workspace number 8
+ bindsym $mod+Shift+9 move container to workspace number 9
+ bindsym $mod+Shift+0 move container to workspace number 0
+ # Note: workspaces can have any name you want, not just numbers.
+ # We just use 1-10 as the default.
+#
+# Layout stuff:
+#
+ # You can "split" the current object of your focus with
+ # $mod+b or $mod+v, for horizontal and vertical splits
+ # respectively.
+ bindsym $mod+b splith
+ bindsym $mod+v splitv
+
+ # Switch the current container between different layout styles
+ bindsym $mod+s layout stacking
+ bindsym $mod+w layout tabbed
+ bindsym $mod+e layout toggle split
+
+ # Make the current focus fullscreen
+ bindsym $mod+f fullscreen
+
+ # Toggle the current focus between tiling and floating mode
+ bindsym $mod+Shift+space floating toggle
+
+ # Swap focus between the tiling area and the floating area
+ bindsym $mod+space focus mode_toggle
+
+ # Move focus to the parent container
+ bindsym $mod+a focus parent
+#
+# Scratchpad:
+#
+ # Sway has a "scratchpad", which is a bag of holding for windows.
+ # You can send windows there and get them back later.
+
+ # Move the currently focused window to the scratchpad
+ bindsym $mod+Shift+minus move scratchpad
+
+ # Show the next scratchpad window or hide the focused scratchpad window.
+ # If there are multiple scratchpad windows, this command cycles through them.
+ bindsym $mod+minus scratchpad show
+#
+# Resizing containers:
+#
+mode "resize" {
+ # left will shrink the containers width
+ # right will grow the containers width
+ # up will shrink the containers height
+ # down will grow the containers height
+ bindsym $left resize shrink width 20px
+ bindsym $down resize grow height 20px
+ bindsym $up resize shrink height 20px
+ bindsym $right resize grow width 20px
+
+ # Ditto, with arrow keys
+ bindsym Left resize shrink width 20px
+ bindsym Down resize grow height 20px
+ bindsym Up resize shrink height 20px
+ bindsym Right resize grow width 20px
+
+ # Return to default mode
+ bindsym Return mode "default"
+ bindsym Escape mode "default"
+}
+bindsym $mod+r mode "resize"
+
+
+
+
+#
+# Status Bar:
+#
+# Read `man 5 sway-bar` for more information about this section.
+#bar {
+# position top
+#
+# # When the status_command prints a new line to stdout, swaybar updates.
+# # The default just shows the current date and time.
+# status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
+#
+# colors {
+# statusline #ffffff
+# background #323232
+# inactive_workspace #32323200 #32323200 #5c5c5c
+# }
+#}
+
+
+#bar {
+# position top
+#
+# # When the status_command prints a new line to stdout, swaybar updates.
+# # The default just shows the current date and time.
+# status_command while ~/.config/sway/status.sh ; do sleep 1; done
+#
+# colors {
+# statusline #ffffff
+# background #323232
+# inactive_workspace #32323200 #32323200 #5c5c5c
+# }
+#}
+
+
+include /etc/sway/config.d/*
+
+#using waybar instead of swaybar.
+exec waybar -c $dir/waybar.d/config -s $dir/waybar.d/style.css
diff --git a/config.bac b/config.bac
new file mode 100644
index 0000000..0c75457
--- /dev/null
+++ b/config.bac
@@ -0,0 +1,250 @@
+# Default config for sway
+#
+# Copy this to ~/.config/sway/config and edit it to your liking.
+#
+# Read `man 5 sway` for a complete reference.
+
+### Variables
+#
+# Logo key. Use Mod1 for Alt.
+set $mod Mod4
+# Home row direction keys, like vim
+set $left h
+set $down j
+set $up k
+set $right l
+# Your preferred terminal emulator
+set $term konsole
+# Your preferred application launcher
+# Note: pass the final command to swaymsg so that the resulting window can be opened
+# on the original workspace that the command was run on.
+set $menu dmenu_path | dmenu | xargs swaymsg exec --
+
+### Output configuration
+#
+# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
+output * bg /usr/share/backgrounds/sway/vaporwave-Sun-mountains-1408599-2364227326.jpg fill
+#
+# Example configuration:
+#
+# output HDMI-A-1 resolution 1920x1080 position 1920,0
+#
+# You can get the names of your outputs by running: swaymsg -t get_outputs
+
+### Idle configuration
+#
+# Example configuration:
+#
+# exec swayidle -w \
+# timeout 300 'swaylock -f -c 000000' \
+# timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
+# before-sleep 'swaylock -f -c 000000'
+#
+# This will lock your screen after 300 seconds of inactivity, then turn off
+# your displays after another 300 seconds, and turn your screens back on when
+# resumed. It will also lock your screen before your computer goes to sleep.
+
+### Input configuration
+#
+# Example configuration:
+#
+# input "2:14:SynPS/2_Synaptics_TouchPad" {
+# dwt enabled
+# tap enabled
+# natural_scroll enabled
+# middle_emulation enabled
+# }
+#
+# You can get the names of your inputs by running: swaymsg -t get_inputs
+# Read `man 5 sway-input` for more information about this section.
+
+### Key bindings
+#
+# Basics:
+#
+ # Start a terminal
+ bindsym $mod+Return exec $term
+
+ # Kill focused window
+ bindsym $mod+Shift+q kill
+
+ # Start your launcher
+ bindsym $mod+d exec $menu
+
+ # brigthness controll
+ bindsym $mod+o exec brightnessctl -d intel_backlight s +11%
+ bindsym $mod+p exec brightnessctl -d intel_backlight s 10%-
+
+ #screenlocker
+ bindsym $mod+m exec swaylock -e -c 222222
+
+
+ # Alt tab window switching.
+ #bindsym $mod+tab workspace next_on_output
+ #bindsym $mod+Shift+tab workspace prev_on_output
+ bindsym Mod1+tab workspace back_and_forth
+
+ # Drag floating windows by holding down $mod and left mouse button.
+ # Resize them with right mouse button + $mod.
+ # Despite the name, also works for non-floating windows.
+ # Change normal to inverse to use left mouse button for resizing and right
+ # mouse button for dragging.
+ floating_modifier $mod normal
+
+ # Reload the configuration file
+ bindsym $mod+Shift+r reload
+
+ # Exit sway (logs you out of your Wayland session)
+ bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
+#
+# Moving around:
+#
+ # Move your focus around
+ bindsym $mod+$left focus left
+ bindsym $mod+$down focus down
+ bindsym $mod+$up focus up
+ bindsym $mod+$right focus right
+ # Or use $mod+[up|down|left|right]
+ bindsym $mod+Left focus left
+ bindsym $mod+Down focus down
+ bindsym $mod+Up focus up
+ bindsym $mod+Right focus right
+
+ # Move the focused window with the same, but add Shift
+ bindsym $mod+Shift+$left move left
+ bindsym $mod+Shift+$down move down
+ bindsym $mod+Shift+$up move up
+ bindsym $mod+Shift+$right move right
+ # Ditto, with arrow keys
+ bindsym $mod+Shift+Left move left
+ bindsym $mod+Shift+Down move down
+ bindsym $mod+Shift+Up move up
+ bindsym $mod+Shift+Right move right
+#
+# Workspaces:
+#
+ # Switch to workspace
+ bindsym $mod+1 workspace number 1
+ bindsym $mod+2 workspace number 2
+ bindsym $mod+3 workspace number 3
+ bindsym $mod+4 workspace number 4
+ bindsym $mod+5 workspace number 5
+ bindsym $mod+6 workspace number 6
+ bindsym $mod+7 workspace number 7
+ bindsym $mod+8 workspace number 8
+ bindsym $mod+9 workspace number 9
+ bindsym $mod+0 workspace number 10
+ # Move focused container to workspace
+ bindsym $mod+Shift+1 move container to workspace number 1
+ bindsym $mod+Shift+2 move container to workspace number 2
+ bindsym $mod+Shift+3 move container to workspace number 3
+ bindsym $mod+Shift+4 move container to workspace number 4
+ bindsym $mod+Shift+5 move container to workspace number 5
+ bindsym $mod+Shift+6 move container to workspace number 6
+ bindsym $mod+Shift+7 move container to workspace number 7
+ bindsym $mod+Shift+8 move container to workspace number 8
+ bindsym $mod+Shift+9 move container to workspace number 9
+ bindsym $mod+Shift+0 move container to workspace number 10
+ # Note: workspaces can have any name you want, not just numbers.
+ # We just use 1-10 as the default.
+#
+# Layout stuff:
+#
+ # You can "split" the current object of your focus with
+ # $mod+b or $mod+v, for horizontal and vertical splits
+ # respectively.
+ bindsym $mod+b splith
+ bindsym $mod+v splitv
+
+ # Switch the current container between different layout styles
+ bindsym $mod+s layout stacking
+ bindsym $mod+w layout tabbed
+ bindsym $mod+e layout toggle split
+
+ # Make the current focus fullscreen
+ bindsym $mod+f fullscreen
+
+ # Toggle the current focus between tiling and floating mode
+ bindsym $mod+Shift+space floating toggle
+
+ # Swap focus between the tiling area and the floating area
+ bindsym $mod+space focus mode_toggle
+
+ # Move focus to the parent container
+ bindsym $mod+a focus parent
+#
+# Scratchpad:
+#
+ # Sway has a "scratchpad", which is a bag of holding for windows.
+ # You can send windows there and get them back later.
+
+ # Move the currently focused window to the scratchpad
+ bindsym $mod+Shift+minus move scratchpad
+
+ # Show the next scratchpad window or hide the focused scratchpad window.
+ # If there are multiple scratchpad windows, this command cycles through them.
+ bindsym $mod+minus scratchpad show
+#
+# Resizing containers:
+#
+mode "resize" {
+ # left will shrink the containers width
+ # right will grow the containers width
+ # up will shrink the containers height
+ # down will grow the containers height
+ bindsym $left resize shrink width 20px
+ bindsym $down resize grow height 20px
+ bindsym $up resize shrink height 20px
+ bindsym $right resize grow width 20px
+
+ # Ditto, with arrow keys
+ bindsym Left resize shrink width 20px
+ bindsym Down resize grow height 20px
+ bindsym Up resize shrink height 20px
+ bindsym Right resize grow width 20px
+
+ # Return to default mode
+ bindsym Return mode "default"
+ bindsym Escape mode "default"
+}
+bindsym $mod+r mode "resize"
+
+
+#inputs
+input * {
+ xkb_layout "no"
+ #xkb_variant ""
+}
+
+#autostart applications
+exec swaymsg "workspace 1; exec konsole;"
+exec swaymsg "workspace 2; exec firefox;"
+exec swaymsg "workspace 3; exec code;"
+exec swaymsg "workspace 3: excec konsole"
+
+
+
+
+#dedicate workspaces
+assign [class="Firefox"] workspace 2
+assign [class="Code"] workspace 3
+
+#
+# Status Bar:
+#
+# Read `man 5 sway-bar` for more information about this section.
+bar {
+ position top
+
+ # When the status_command prints a new line to stdout, swaybar updates.
+ # The default just shows the current date and time.
+ status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
+
+ colors {
+ statusline #ffffff
+ background #323232
+ inactive_workspace #32323200 #32323200 #5c5c5c
+ }
+}
+
+include /etc/sway/config.d/*
diff --git a/dependencies.md b/dependencies.md
new file mode 100644
index 0000000..0a6841e
--- /dev/null
+++ b/dependencies.md
@@ -0,0 +1,47 @@
+
+applications for basic usage:
+
+#sway driectly
+sway #alternativley the sway-hidpi version
+
+swaybar
+waybar #instead of swaybar
+i3status-rust # have not actually loocked into it, but seems promising with swaybar if waybar is not the better solution
+networkmanager-applet # not properly implemented
+
+
+
+#lockscreen
+swaylock-effects
+swayidle
+
+#terminal
+foot
+
+#brightnesscontrol
+brightnessctl
+
+#sound control
+pavucontrol
+
+#screenshot
+grim
+slurp
+
+#wallpaper
+swaybg
+
+#div
+sway-dynamic-names #really buggy, but kinda nice
+ttf-fonts-awesome #at least used by dynamic names, and cool to have.
+otf-font-awesome #same as above
+find #used for finding raondom background screens
+
+
+#hidpi kinda optional
+wlroots-hidpi
+sway-hidpi #replacement for sway with hidpi support built in
+xorg-xwayland-hidpi
+xorg-xwayland-hidpi-xprop
+
+
diff --git a/idle.sh b/idle.sh
new file mode 100755
index 0000000..2950924
--- /dev/null
+++ b/idle.sh
@@ -0,0 +1,7 @@
+swayidle \
+ timeout 300 '~/.config/sway/idlelock.sh' \
+ timeout 600 'swaymsg "output * dpms off"' \
+ resume 'swaymsg "output * dpms on"' \
+ before-sleep '~/.config/sway/idlelock.sh'
+
+
diff --git a/idle.sh.bac b/idle.sh.bac
new file mode 100755
index 0000000..cc6e49d
--- /dev/null
+++ b/idle.sh.bac
@@ -0,0 +1,7 @@
+swayidle \
+ timeout 180 '~/.config/sway/lock.sh --grace 20 --fade-in 8' \
+ timeout 200 'swaymsg "output * dpms off"' \
+ resume 'swaymsg "output * dpms on"' \
+ before-sleep '~/.config/sway/idlelock.sh'
+
+
diff --git a/idlelock.sh b/idlelock.sh
new file mode 100755
index 0000000..078bde9
--- /dev/null
+++ b/idlelock.sh
@@ -0,0 +1,24 @@
+brightnessctl -d intel_backlight s 10%
+swaylock -e \
+ --screenshots \
+ --grace 15 \
+ --clock \
+ --submit-on-touch \
+ --indicator-idle-visible \
+ --indicator-radius 100 \
+ --indicator-thickness 7 \
+ --ring-color 455a64 \
+ --key-hl-color be5046 \
+ --text-color ffc107 \
+ --line-color 00000000 \
+ --inside-color 00000088 \
+ --separator-color 00000000 \
+ --fade-in 0.1 \
+ --effect-scale 0.5 \
+ --effect-blur 7x3 \
+ --effect-scale 2 \
+ --effect-vignette 0.5:0.5 \
+# --effect-compose "50%,50%;20%x20%;center;$HOME/.config/sway/lockscreen.jpg" \
+ "$@"
+
+brightnessctl -d intel_backlight s 50%
diff --git a/lock.sh b/lock.sh
new file mode 100755
index 0000000..e8f121e
--- /dev/null
+++ b/lock.sh
@@ -0,0 +1,23 @@
+brightnessctl -d intel_backlight s 10%
+swaylock -e \
+ --screenshots \
+ --clock \
+ --submit-on-touch \
+ --indicator-idle-visible \
+ --indicator-radius 100 \
+ --indicator-thickness 7 \
+ --ring-color 455a64 \
+ --key-hl-color be5046 \
+ --text-color ffc107 \
+ --line-color 00000000 \
+ --inside-color 00000088 \
+ --separator-color 00000000 \
+ --fade-in 0.1 \
+ --effect-scale 0.5 \
+ --effect-blur 7x3 \
+ --effect-scale 2 \
+ --effect-vignette 0.5:0.5 \
+# --effect-compose "50%,50%;20%x20%;center;$HOME/.config/sway/lockscreen.jpg" \
+ "$@"
+
+brightnessctl -d intel_backlight s 50%
diff --git a/lockscreen.jpg b/lockscreen.jpg
new file mode 100644
index 0000000..95a446e
Binary files /dev/null and b/lockscreen.jpg differ
diff --git a/screenshot.sh b/screenshot.sh
new file mode 100755
index 0000000..d01ca6b
--- /dev/null
+++ b/screenshot.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+FILENAME="screenshot-`date +%F-%T`"
+grim -g "$(slurp)" ~/Pictures/screenshots/$FILENAME.png
diff --git a/sdn-config.yaml b/sdn-config.yaml
new file mode 100644
index 0000000..ae082c3
--- /dev/null
+++ b/sdn-config.yaml
@@ -0,0 +1,17 @@
+clients:
+ google-chrome-beta: chrome
+ jetbrains-(.*):
+ icon: terminal
+ extra: "{1}"
+ firefox: firefox
+ foot: terminal
+ thunderbird: envelope
+ nautilus: folder-open
+ clementine: music
+ vlc: play
+ signal: comment
+ code-oss: code
+deliminator: " | "
+default_icon: dot-circle
+default:
+ new_desktop: true
diff --git a/sounds/Anime Sounds/touko_asterisk.wav b/sounds/Anime Sounds/touko_asterisk.wav
new file mode 100644
index 0000000..2cc8d2f
Binary files /dev/null and b/sounds/Anime Sounds/touko_asterisk.wav differ
diff --git a/sounds/Anime Sounds/touko_critical_battery.wav b/sounds/Anime Sounds/touko_critical_battery.wav
new file mode 100644
index 0000000..23c8a22
Binary files /dev/null and b/sounds/Anime Sounds/touko_critical_battery.wav differ
diff --git a/sounds/Anime Sounds/touko_critical_stop.wav b/sounds/Anime Sounds/touko_critical_stop.wav
new file mode 100644
index 0000000..24ffed9
Binary files /dev/null and b/sounds/Anime Sounds/touko_critical_stop.wav differ
diff --git a/sounds/Anime Sounds/touko_default_beep.wav b/sounds/Anime Sounds/touko_default_beep.wav
new file mode 100644
index 0000000..6a8047f
Binary files /dev/null and b/sounds/Anime Sounds/touko_default_beep.wav differ
diff --git a/sounds/Anime Sounds/touko_device_connect.wav b/sounds/Anime Sounds/touko_device_connect.wav
new file mode 100644
index 0000000..e06a042
Binary files /dev/null and b/sounds/Anime Sounds/touko_device_connect.wav differ
diff --git a/sounds/Anime Sounds/touko_device_disconnect.wav b/sounds/Anime Sounds/touko_device_disconnect.wav
new file mode 100644
index 0000000..6939164
Binary files /dev/null and b/sounds/Anime Sounds/touko_device_disconnect.wav differ
diff --git a/sounds/Anime Sounds/touko_device_failed.wav b/sounds/Anime Sounds/touko_device_failed.wav
new file mode 100644
index 0000000..ac22eef
Binary files /dev/null and b/sounds/Anime Sounds/touko_device_failed.wav differ
diff --git a/sounds/Anime Sounds/touko_exclamation.wav b/sounds/Anime Sounds/touko_exclamation.wav
new file mode 100644
index 0000000..974ceec
Binary files /dev/null and b/sounds/Anime Sounds/touko_exclamation.wav differ
diff --git a/sounds/Anime Sounds/touko_low_battery.wav b/sounds/Anime Sounds/touko_low_battery.wav
new file mode 100644
index 0000000..bc41380
Binary files /dev/null and b/sounds/Anime Sounds/touko_low_battery.wav differ
diff --git a/sounds/Anime Sounds/touko_maximize_pirorin.wav b/sounds/Anime Sounds/touko_maximize_pirorin.wav
new file mode 100644
index 0000000..d1d9119
Binary files /dev/null and b/sounds/Anime Sounds/touko_maximize_pirorin.wav differ
diff --git a/sounds/Anime Sounds/touko_minimize_pipo.wav b/sounds/Anime Sounds/touko_minimize_pipo.wav
new file mode 100644
index 0000000..5ac4b3d
Binary files /dev/null and b/sounds/Anime Sounds/touko_minimize_pipo.wav differ
diff --git a/sounds/Anime Sounds/touko_new_mail.wav b/sounds/Anime Sounds/touko_new_mail.wav
new file mode 100644
index 0000000..b209ca9
Binary files /dev/null and b/sounds/Anime Sounds/touko_new_mail.wav differ
diff --git a/sounds/Anime Sounds/touko_restore_down_jan.wav b/sounds/Anime Sounds/touko_restore_down_jan.wav
new file mode 100644
index 0000000..413aaab
Binary files /dev/null and b/sounds/Anime Sounds/touko_restore_down_jan.wav differ
diff --git a/sounds/Anime Sounds/touko_restore_up_jajan.wav b/sounds/Anime Sounds/touko_restore_up_jajan.wav
new file mode 100644
index 0000000..5c28a5e
Binary files /dev/null and b/sounds/Anime Sounds/touko_restore_up_jajan.wav differ
diff --git a/sounds/Anime Sounds/touko_system_notification.wav b/sounds/Anime Sounds/touko_system_notification.wav
new file mode 100644
index 0000000..5064fb9
Binary files /dev/null and b/sounds/Anime Sounds/touko_system_notification.wav differ
diff --git a/sounds/Anime Sounds/touko_uac.wav b/sounds/Anime Sounds/touko_uac.wav
new file mode 100644
index 0000000..4d57036
Binary files /dev/null and b/sounds/Anime Sounds/touko_uac.wav differ
diff --git a/sounds/Anime Sounds/touko_windows_change_theme.wav b/sounds/Anime Sounds/touko_windows_change_theme.wav
new file mode 100644
index 0000000..2a51570
Binary files /dev/null and b/sounds/Anime Sounds/touko_windows_change_theme.wav differ
diff --git a/sounds/Enchanted_stereo_audio-volume-change.ogg b/sounds/Enchanted_stereo_audio-volume-change.ogg
new file mode 100644
index 0000000..c92b7c4
Binary files /dev/null and b/sounds/Enchanted_stereo_audio-volume-change.ogg differ
diff --git a/sounds/Linux Ubuntu/Balloon.wav b/sounds/Linux Ubuntu/Balloon.wav
new file mode 100644
index 0000000..a713655
Binary files /dev/null and b/sounds/Linux Ubuntu/Balloon.wav differ
diff --git a/sounds/Linux Ubuntu/Connect.wav b/sounds/Linux Ubuntu/Connect.wav
new file mode 100644
index 0000000..c77beb7
Binary files /dev/null and b/sounds/Linux Ubuntu/Connect.wav differ
diff --git a/sounds/Linux Ubuntu/Default.wav b/sounds/Linux Ubuntu/Default.wav
new file mode 100644
index 0000000..7c54792
Binary files /dev/null and b/sounds/Linux Ubuntu/Default.wav differ
diff --git a/sounds/Linux Ubuntu/Disconnect.wav b/sounds/Linux Ubuntu/Disconnect.wav
new file mode 100644
index 0000000..dce135e
Binary files /dev/null and b/sounds/Linux Ubuntu/Disconnect.wav differ
diff --git a/sounds/Linux Ubuntu/Exclamation.wav b/sounds/Linux Ubuntu/Exclamation.wav
new file mode 100644
index 0000000..5158097
Binary files /dev/null and b/sounds/Linux Ubuntu/Exclamation.wav differ
diff --git a/sounds/Linux Ubuntu/Menu popup.wav b/sounds/Linux Ubuntu/Menu popup.wav
new file mode 100644
index 0000000..6740d3f
Binary files /dev/null and b/sounds/Linux Ubuntu/Menu popup.wav differ
diff --git a/sounds/Linux Ubuntu/error.wav b/sounds/Linux Ubuntu/error.wav
new file mode 100644
index 0000000..ebe1526
Binary files /dev/null and b/sounds/Linux Ubuntu/error.wav differ
diff --git a/sounds/Linux Ubuntu/fail.wav b/sounds/Linux Ubuntu/fail.wav
new file mode 100644
index 0000000..e456f4a
Binary files /dev/null and b/sounds/Linux Ubuntu/fail.wav differ
diff --git a/sounds/Linux Ubuntu/login.wav b/sounds/Linux Ubuntu/login.wav
new file mode 100644
index 0000000..ec06433
Binary files /dev/null and b/sounds/Linux Ubuntu/login.wav differ
diff --git a/sounds/Linux Ubuntu/logout.wav b/sounds/Linux Ubuntu/logout.wav
new file mode 100644
index 0000000..69af246
Binary files /dev/null and b/sounds/Linux Ubuntu/logout.wav differ
diff --git a/sounds/Linux Ubuntu/new Mail.wav b/sounds/Linux Ubuntu/new Mail.wav
new file mode 100644
index 0000000..0ed7969
Binary files /dev/null and b/sounds/Linux Ubuntu/new Mail.wav differ
diff --git a/sounds/Linux Ubuntu/question.wav b/sounds/Linux Ubuntu/question.wav
new file mode 100644
index 0000000..76c4ecf
Binary files /dev/null and b/sounds/Linux Ubuntu/question.wav differ
diff --git a/sounds/Linux Ubuntu/shutdown.wav b/sounds/Linux Ubuntu/shutdown.wav
new file mode 100644
index 0000000..c6c823c
Binary files /dev/null and b/sounds/Linux Ubuntu/shutdown.wav differ
diff --git a/sounds/Linux Ubuntu/startup.wav b/sounds/Linux Ubuntu/startup.wav
new file mode 100644
index 0000000..9dd9de8
Binary files /dev/null and b/sounds/Linux Ubuntu/startup.wav differ
diff --git a/sounds/MacSounds/MACSound/Asterik.wav b/sounds/MacSounds/MACSound/Asterik.wav
new file mode 100644
index 0000000..ae836ce
Binary files /dev/null and b/sounds/MacSounds/MACSound/Asterik.wav differ
diff --git a/sounds/MacSounds/MACSound/Close.wav b/sounds/MacSounds/MACSound/Close.wav
new file mode 100644
index 0000000..1f9557c
Binary files /dev/null and b/sounds/MacSounds/MACSound/Close.wav differ
diff --git a/sounds/MacSounds/MACSound/Complete Navigation.wav b/sounds/MacSounds/MACSound/Complete Navigation.wav
new file mode 100644
index 0000000..5bfc95e
Binary files /dev/null and b/sounds/MacSounds/MACSound/Complete Navigation.wav differ
diff --git a/sounds/MacSounds/MACSound/Contact Online.wav b/sounds/MacSounds/MACSound/Contact Online.wav
new file mode 100644
index 0000000..6699f78
Binary files /dev/null and b/sounds/MacSounds/MACSound/Contact Online.wav differ
diff --git a/sounds/MacSounds/MACSound/Critical Battery.wav b/sounds/MacSounds/MACSound/Critical Battery.wav
new file mode 100644
index 0000000..b5882a3
Binary files /dev/null and b/sounds/MacSounds/MACSound/Critical Battery.wav differ
diff --git a/sounds/MacSounds/MACSound/Critical Stop.wav b/sounds/MacSounds/MACSound/Critical Stop.wav
new file mode 100644
index 0000000..253b412
Binary files /dev/null and b/sounds/MacSounds/MACSound/Critical Stop.wav differ
diff --git a/sounds/MacSounds/MACSound/Default Beep.wav b/sounds/MacSounds/MACSound/Default Beep.wav
new file mode 100644
index 0000000..a4374f3
Binary files /dev/null and b/sounds/MacSounds/MACSound/Default Beep.wav differ
diff --git a/sounds/MacSounds/MACSound/Device Connect.wav b/sounds/MacSounds/MACSound/Device Connect.wav
new file mode 100644
index 0000000..cc477f9
Binary files /dev/null and b/sounds/MacSounds/MACSound/Device Connect.wav differ
diff --git a/sounds/MacSounds/MACSound/Device Disconnect.wav b/sounds/MacSounds/MACSound/Device Disconnect.wav
new file mode 100644
index 0000000..42b1a47
Binary files /dev/null and b/sounds/MacSounds/MACSound/Device Disconnect.wav differ
diff --git a/sounds/MacSounds/MACSound/Device Failed.wav b/sounds/MacSounds/MACSound/Device Failed.wav
new file mode 100644
index 0000000..4120daf
Binary files /dev/null and b/sounds/MacSounds/MACSound/Device Failed.wav differ
diff --git a/sounds/MacSounds/MACSound/Empty Recycle.wav b/sounds/MacSounds/MACSound/Empty Recycle.wav
new file mode 100644
index 0000000..55beae7
Binary files /dev/null and b/sounds/MacSounds/MACSound/Empty Recycle.wav differ
diff --git a/sounds/MacSounds/MACSound/Error.wav b/sounds/MacSounds/MACSound/Error.wav
new file mode 100644
index 0000000..e07723a
Binary files /dev/null and b/sounds/MacSounds/MACSound/Error.wav differ
diff --git a/sounds/MacSounds/MACSound/Exclamation.wav b/sounds/MacSounds/MACSound/Exclamation.wav
new file mode 100644
index 0000000..8f42978
Binary files /dev/null and b/sounds/MacSounds/MACSound/Exclamation.wav differ
diff --git a/sounds/MacSounds/MACSound/Exit Windows.wav b/sounds/MacSounds/MACSound/Exit Windows.wav
new file mode 100644
index 0000000..68b6a4a
Binary files /dev/null and b/sounds/MacSounds/MACSound/Exit Windows.wav differ
diff --git a/sounds/MacSounds/MACSound/Logoff.wav b/sounds/MacSounds/MACSound/Logoff.wav
new file mode 100644
index 0000000..68b6a4a
Binary files /dev/null and b/sounds/MacSounds/MACSound/Logoff.wav differ
diff --git a/sounds/MacSounds/MACSound/Logon.wav b/sounds/MacSounds/MACSound/Logon.wav
new file mode 100644
index 0000000..9456e35
Binary files /dev/null and b/sounds/MacSounds/MACSound/Logon.wav differ
diff --git a/sounds/MacSounds/MACSound/Low Battery.wav b/sounds/MacSounds/MACSound/Low Battery.wav
new file mode 100644
index 0000000..4120daf
Binary files /dev/null and b/sounds/MacSounds/MACSound/Low Battery.wav differ
diff --git a/sounds/MacSounds/MACSound/MACSound.inf b/sounds/MacSounds/MACSound/MACSound.inf
new file mode 100644
index 0000000..28b8ba2
--- /dev/null
+++ b/sounds/MacSounds/MACSound/MACSound.inf
@@ -0,0 +1,212 @@
+;MAC Sound Setup For XP
+[Version]
+Signature="$CHICAGO$"
+
+[DefaultInstall]
+AddReg=MACsnd_AddReg
+Copyfiles=MACsnd_Copyfiles,MACsnd_inf
+
+[DefaultUnInstall]
+DelFiles=MACsnd_Copyfiles,MACsnd_inf
+DelReg=MACsnd_AddReg
+AddReg=DefaultReg
+
+[DestinationDirs]
+MACsnd_Copyfiles=10,Media\MACsnd
+MACsnd_inf=17
+
+[MACsnd_Copyfiles]
+Asterik.wav
+Close.wav
+Complete Navigation.wav
+Contact Online.wav
+Critical Battery.wav
+Critical Stop.wav
+Default Beep.wav
+Device Connect.wav
+Device Disconnect.wav
+Device Failed.wav
+Empty Recycle.wav
+Error.wav
+Exclamation.wav
+Windows exit.wav
+Logoff.wav
+Logon.wav
+Low Battery.wav
+Maximize.wav
+Menu Command.wav
+Menu Popup.wav
+Minimize.wav
+Move Menu.wav
+New Alert.wav
+New Mail.wav
+New Messages.wav
+Open.wav
+Person Join.wav
+Person Leave.wav
+Print Complete.wav
+Program Error.wav
+Question.wav
+Receive Call.wav
+Receive Request.wav
+Restore Down.wav
+Restore Up.wav
+Select.wav
+Show Toolbar.wav
+Start Navigation.wav
+Windows XP start.wav
+System Notifi.wav
+
+[MACsnd_inf]
+MACSound.inf
+
+[MACsnd_AddReg]
+HKCU,AppEvents\Schemes,,,"MAC Sound"
+HKCU,AppEvents\Schemes\Apps\.Default\.Default\.Current,,,"C:\Windows\Media\MACsnd\Default Beep.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\.Default\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\.Default\MACsnd,,,"C:\Windows\Media\MACsnd\Default Beep.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\AppGPFault\.Current,,,"C:\Windows\Media\MACsnd\Program Error.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\AppGPFault\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\AppGPFault\MACsnd,,,"C:\Windows\Media\MACsnd\Program Error.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CCSelect\.Current,,,"C:\Windows\Media\MACsnd\Select.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CCSelect\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\CCSelect\MACsnd,,,"C:\Windows\Media\MACsnd\Select.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Close\.Current,,,"C:\Windows\Media\MACsnd\Close.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Close\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\Close\MACsnd,,,"C:\Windows\Media\MACsnd\Close.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\.Current,,,"C:\Windows\Media\MACsnd\Critical Battery.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\MACsnd,,,"C:\Windows\Media\MACsnd\Critical Battery.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceConnect\.Current,,,"C:\Windows\Media\MACsnd\Device Connect.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceConnect\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceConnect\MACsnd,,,"C:\Windows\Media\MACsnd\Device Connect.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceDisconnect\.Current,,,"C:\Windows\Media\MACsnd\Device Disconnect.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceDisconnect\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceDisconnect\MACsnd,,,"C:\Windows\Media\MACsnd\Device Disconnect.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceFail\.Current,,,"C:\Windows\Media\MACsnd\Device Failed.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceFail\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceFail\MACsnd,,,"C:\Windows\Media\MACsnd\Device Failed.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\.Current,,,"C:\Windows\Media\MACsnd\Low Battery.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\MACsnd,,,"C:\Windows\Media\MACsnd\Low Battery.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MailBeep\.Current,,,"C:\Windows\Media\MACsnd\New Mail.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MailBeep\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\MailBeep\MACsnd,,,"C:\Windows\Media\MACsnd\New Mail.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Maximize\.Current,,,"C:\Windows\Media\MACsnd\Maximize.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Maximize\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\Maximize\MACsnd,,,"C:\Windows\Media\MACsnd\Maximize.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MenuCommand\.Current,,,"C:\Windows\Media\MACsnd\Menu Command.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MenuCommand\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\MenuCommand\MACsnd,,,"C:\Windows\Media\MACsnd\Menu Command.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MenuPopup\.Current,,,"C:\Windows\Media\MACsnd\Menu Popup.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MenuPopup\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\MenuPopup\MACsnd,,,"C:\Windows\Media\MACsnd\Menu Popup.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Minimize\.Current,,,"C:\Windows\Media\MACsnd\Minimize.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Minimize\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\Minimize\MACsnd,,,"C:\Windows\Media\MACsnd\Minimize.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Open\.Current,,,"C:\Windows\Media\MACsnd\Open.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Open\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\Open\MACsnd,,,"C:\Windows\Media\MACsnd\Open.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\PrintComplete\.Current,,,"C:\Windows\Media\MACsnd\Print Complete.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\PrintComplete\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\PrintComplete\MACsnd,,,"C:\Windows\Media\MACsnd\Print Complete.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreDown\.Current,,,"C:\Windows\Media\MACsnd\Restore Down.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreDown\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreDown\MACsnd,,,"C:\Windows\Media\MACsnd\Restore Down.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreUp\.Current,,,"C:\Windows\Media\MACsnd\Restore Up.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreUp\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreUp\MACsnd,,,"C:\Windows\Media\MACsnd\Restore Up.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\ShowBand\.Current,,,"C:\Windows\Media\MACsnd\Show Toolbar.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\ShowBand\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\ShowBand\MACsnd,,,"C:\Windows\Media\MACsnd\Show Toolbar.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemAsterisk\.Current,,,"C:\Windows\Media\MACsnd\Asterik.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemAsterisk\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemAsterisk\MACsnd,,,"C:\Windows\Media\MACsnd\Asterik.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExclamation\.Current,,,"C:\Windows\Media\MACsnd\Exclamation.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExclamation\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExclamation\MACsnd,,,"C:\Windows\Media\MACsnd\Exclamation.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExit\.Current,,,"C:\Windows\Media\MACsnd\Windows exit.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExit\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExit\MACsnd,,,"C:\Windows\Media\MACsnd\Windows exit.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemHand\.Current,,,"C:\Windows\Media\MACsnd\Critical Stop.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemHand\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemHand\MACsnd,,,"C:\Windows\Media\MACsnd\Critical Stop.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemNotification\.Current,,,"C:\Windows\Media\MACsnd\System Notifi.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemNotification\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemNotification\MACsnd,,,"C:\Windows\Media\MACsnd\System Notifi.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemQuestion\.Current,,,"C:\Windows\Media\MACsnd\Question.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemQuestion\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemQuestion\MACsnd,,,"C:\Windows\Media\MACsnd\Question.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemStart\.Current,,,"C:\Windows\Media\MACsnd\Windows XP start.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemStart\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemStart\MACsnd,,,"C:\Windows\Media\MACsnd\Windows XP start.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogoff\.Current,,,"C:\Windows\Media\MACsnd\Logoff.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogoff\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogoff\MACsnd,,,"C:\Windows\Media\MACsnd\Logoff.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogon\.Current,,,"C:\Windows\Media\MACsnd\Logon.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogon\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogon\MACsnd,,,"C:\Windows\Media\MACsnd\Logon.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Person Joins\.Current,,,"C:\Windows\Media\MACsnd\Person Join.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Person Joins\MACsnd
+HKCU,AppEvents\Schemes\Apps\Conf\Person Joins\MACsnd,,,"C:\Windows\Media\MACsnd\Person Join.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Person Leaves\.Current,,,"C:\Windows\Media\MACsnd\Person Leave.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Person Leaves\MACsnd
+HKCU,AppEvents\Schemes\Apps\Conf\Person Leaves\MACsnd,,,"C:\Windows\Media\MACsnd\Person Leave.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Call\.Current,,,"C:\Windows\Media\MACsnd\Receive Call.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Call\MACsnd
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Call\MACsnd,,,"C:\Windows\Media\MACsnd\Receive Call.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Request to Join\.Current,,,"C:\Windows\Media\MACsnd\Receive Request.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Request to Join\MACsnd
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Request to Join\MACsnd,,,"C:\Windows\Media\MACsnd\Receive Request.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\ActivatingDocument\.Current,,,"C:\Windows\Media\MACsnd\Complete Navigation.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\ActivatingDocument\MACsnd
+HKCU,AppEvents\Schemes\Apps\Explorer\ActivatingDocument\MACsnd,,,"C:\Windows\Media\MACsnd\Complete Navigation.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\.Current,,,"C:\Windows\Media\MACsnd\Empty Recycle.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\MACsnd
+HKCU,AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\MACsnd,,,"C:\Windows\Media\MACsnd\Empty Recycle.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\MoveMenuItem\.Current,,,"C:\Windows\Media\MACsnd\Move Menu.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\MoveMenuItem\MACsnd
+HKCU,AppEvents\Schemes\Apps\Explorer\MoveMenuItem\MACsnd,,,"C:\Windows\Media\MACsnd\Move Menu.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\Navigating\.Current,,,"C:\Windows\Media\MACsnd\Start Navigation.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\Navigating\MACsnd
+HKCU,AppEvents\Schemes\Apps\Explorer\Navigating\MACsnd,,,"C:\Windows\Media\MACsnd\Start Navigation.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_ContactOnline\.Current,,,"C:\Windows\Media\MACsnd\Contact Online.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_ContactOnline\MACsnd
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_ContactOnline\MACsnd,,,"C:\Windows\Media\MACsnd\Contact Online.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewAlert\.Current,,,"C:\Windows\Media\MACsnd\New Alert.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewAlert\MACsnd
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewAlert\MACsnd,,,"C:\Windows\Media\MACsnd\New Alert.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMail\.Current,,,"C:\Windows\Media\MACsnd\New Mail.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMail\MACsnd
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMail\MACsnd,,,"C:\Windows\Media\MACsnd\New Mail.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMessage\.Current,,,"C:\Windows\Media\MACsnd\New Messages.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMessage\MACsnd
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMessage\MACsnd,,,"C:\Windows\Media\MACsnd\New Messages.wav"
+HKCU,AppEvents\Schemes\Names\MACsnd
+HKCU,AppEvents\Schemes\Names\MACsnd,,,"MAC Sound"
+HKLM,Software\Microsoft\Windows\CurrentVersion\Uninstall\MACsnd
+HKLM,Software\Microsoft\Windows\CurrentVersion\Uninstall\MACsnd,DisplayName,,"MAC Sound"
+HKLM,Software\Microsoft\Windows\CurrentVersion\Uninstall\MACsnd,UninstallString,,"rundll32.exe syssetup.dll,SetupInfObjectInstallAction DefaultUninstall 132 %17%\MACSound.inf"
+
+[DefaultReg]
+HKCU,AppEvents\Schemes,,,".default"
+HKCU,AppEvents\Schemes\Apps\.Default\.Default\.Current,,,"Windows XP Ding.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\.Current,,,"Windows XP Battery Critical.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceConnect\.Current,,,"Windows XP Hardware Insert.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceDisconnect\.Current,,,"Windows XP Hardware Remove.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceFail\.Current,,,"Windows XP Hardware Fail.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\.Current,,,"Windows XP Battery Low.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MailBeep\.Current,,,"Windows XP Notify.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemAsterisk\.Current,,,"Windows XP Error.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExclamation\.Current,,,"Windows XP Exclamation.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExit\.Current,,,"Windows XP Shutdown.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemHand\.Current,,,"Windows XP Critical Stop.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemNotification\.Current,,,"Windows XP Balloon.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemStart\.Current,,,"Windows XP Startup.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogoff\.Current,,,"Windows XP Logoff Sound.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogon\.Current,,,"Windows XP Logon Sound.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Call\.Current,,,"RingIn.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Request to Join\.Current,,,"RingIn.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\ActivatingDocument\.Current,,,"Windows XP Notify.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\.Current,,,"Windows XP Recycle.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\Navigating\.Current,,,"Windows XP Start.wav"
diff --git a/sounds/MacSounds/MACSound/MACSound.winxp.inf b/sounds/MacSounds/MACSound/MACSound.winxp.inf
new file mode 100644
index 0000000..28b8ba2
--- /dev/null
+++ b/sounds/MacSounds/MACSound/MACSound.winxp.inf
@@ -0,0 +1,212 @@
+;MAC Sound Setup For XP
+[Version]
+Signature="$CHICAGO$"
+
+[DefaultInstall]
+AddReg=MACsnd_AddReg
+Copyfiles=MACsnd_Copyfiles,MACsnd_inf
+
+[DefaultUnInstall]
+DelFiles=MACsnd_Copyfiles,MACsnd_inf
+DelReg=MACsnd_AddReg
+AddReg=DefaultReg
+
+[DestinationDirs]
+MACsnd_Copyfiles=10,Media\MACsnd
+MACsnd_inf=17
+
+[MACsnd_Copyfiles]
+Asterik.wav
+Close.wav
+Complete Navigation.wav
+Contact Online.wav
+Critical Battery.wav
+Critical Stop.wav
+Default Beep.wav
+Device Connect.wav
+Device Disconnect.wav
+Device Failed.wav
+Empty Recycle.wav
+Error.wav
+Exclamation.wav
+Windows exit.wav
+Logoff.wav
+Logon.wav
+Low Battery.wav
+Maximize.wav
+Menu Command.wav
+Menu Popup.wav
+Minimize.wav
+Move Menu.wav
+New Alert.wav
+New Mail.wav
+New Messages.wav
+Open.wav
+Person Join.wav
+Person Leave.wav
+Print Complete.wav
+Program Error.wav
+Question.wav
+Receive Call.wav
+Receive Request.wav
+Restore Down.wav
+Restore Up.wav
+Select.wav
+Show Toolbar.wav
+Start Navigation.wav
+Windows XP start.wav
+System Notifi.wav
+
+[MACsnd_inf]
+MACSound.inf
+
+[MACsnd_AddReg]
+HKCU,AppEvents\Schemes,,,"MAC Sound"
+HKCU,AppEvents\Schemes\Apps\.Default\.Default\.Current,,,"C:\Windows\Media\MACsnd\Default Beep.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\.Default\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\.Default\MACsnd,,,"C:\Windows\Media\MACsnd\Default Beep.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\AppGPFault\.Current,,,"C:\Windows\Media\MACsnd\Program Error.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\AppGPFault\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\AppGPFault\MACsnd,,,"C:\Windows\Media\MACsnd\Program Error.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CCSelect\.Current,,,"C:\Windows\Media\MACsnd\Select.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CCSelect\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\CCSelect\MACsnd,,,"C:\Windows\Media\MACsnd\Select.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Close\.Current,,,"C:\Windows\Media\MACsnd\Close.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Close\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\Close\MACsnd,,,"C:\Windows\Media\MACsnd\Close.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\.Current,,,"C:\Windows\Media\MACsnd\Critical Battery.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\MACsnd,,,"C:\Windows\Media\MACsnd\Critical Battery.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceConnect\.Current,,,"C:\Windows\Media\MACsnd\Device Connect.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceConnect\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceConnect\MACsnd,,,"C:\Windows\Media\MACsnd\Device Connect.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceDisconnect\.Current,,,"C:\Windows\Media\MACsnd\Device Disconnect.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceDisconnect\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceDisconnect\MACsnd,,,"C:\Windows\Media\MACsnd\Device Disconnect.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceFail\.Current,,,"C:\Windows\Media\MACsnd\Device Failed.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceFail\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceFail\MACsnd,,,"C:\Windows\Media\MACsnd\Device Failed.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\.Current,,,"C:\Windows\Media\MACsnd\Low Battery.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\MACsnd,,,"C:\Windows\Media\MACsnd\Low Battery.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MailBeep\.Current,,,"C:\Windows\Media\MACsnd\New Mail.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MailBeep\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\MailBeep\MACsnd,,,"C:\Windows\Media\MACsnd\New Mail.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Maximize\.Current,,,"C:\Windows\Media\MACsnd\Maximize.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Maximize\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\Maximize\MACsnd,,,"C:\Windows\Media\MACsnd\Maximize.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MenuCommand\.Current,,,"C:\Windows\Media\MACsnd\Menu Command.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MenuCommand\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\MenuCommand\MACsnd,,,"C:\Windows\Media\MACsnd\Menu Command.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MenuPopup\.Current,,,"C:\Windows\Media\MACsnd\Menu Popup.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MenuPopup\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\MenuPopup\MACsnd,,,"C:\Windows\Media\MACsnd\Menu Popup.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Minimize\.Current,,,"C:\Windows\Media\MACsnd\Minimize.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Minimize\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\Minimize\MACsnd,,,"C:\Windows\Media\MACsnd\Minimize.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Open\.Current,,,"C:\Windows\Media\MACsnd\Open.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\Open\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\Open\MACsnd,,,"C:\Windows\Media\MACsnd\Open.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\PrintComplete\.Current,,,"C:\Windows\Media\MACsnd\Print Complete.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\PrintComplete\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\PrintComplete\MACsnd,,,"C:\Windows\Media\MACsnd\Print Complete.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreDown\.Current,,,"C:\Windows\Media\MACsnd\Restore Down.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreDown\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreDown\MACsnd,,,"C:\Windows\Media\MACsnd\Restore Down.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreUp\.Current,,,"C:\Windows\Media\MACsnd\Restore Up.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreUp\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\RestoreUp\MACsnd,,,"C:\Windows\Media\MACsnd\Restore Up.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\ShowBand\.Current,,,"C:\Windows\Media\MACsnd\Show Toolbar.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\ShowBand\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\ShowBand\MACsnd,,,"C:\Windows\Media\MACsnd\Show Toolbar.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemAsterisk\.Current,,,"C:\Windows\Media\MACsnd\Asterik.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemAsterisk\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemAsterisk\MACsnd,,,"C:\Windows\Media\MACsnd\Asterik.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExclamation\.Current,,,"C:\Windows\Media\MACsnd\Exclamation.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExclamation\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExclamation\MACsnd,,,"C:\Windows\Media\MACsnd\Exclamation.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExit\.Current,,,"C:\Windows\Media\MACsnd\Windows exit.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExit\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExit\MACsnd,,,"C:\Windows\Media\MACsnd\Windows exit.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemHand\.Current,,,"C:\Windows\Media\MACsnd\Critical Stop.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemHand\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemHand\MACsnd,,,"C:\Windows\Media\MACsnd\Critical Stop.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemNotification\.Current,,,"C:\Windows\Media\MACsnd\System Notifi.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemNotification\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemNotification\MACsnd,,,"C:\Windows\Media\MACsnd\System Notifi.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemQuestion\.Current,,,"C:\Windows\Media\MACsnd\Question.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemQuestion\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemQuestion\MACsnd,,,"C:\Windows\Media\MACsnd\Question.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemStart\.Current,,,"C:\Windows\Media\MACsnd\Windows XP start.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemStart\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\SystemStart\MACsnd,,,"C:\Windows\Media\MACsnd\Windows XP start.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogoff\.Current,,,"C:\Windows\Media\MACsnd\Logoff.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogoff\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogoff\MACsnd,,,"C:\Windows\Media\MACsnd\Logoff.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogon\.Current,,,"C:\Windows\Media\MACsnd\Logon.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogon\MACsnd
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogon\MACsnd,,,"C:\Windows\Media\MACsnd\Logon.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Person Joins\.Current,,,"C:\Windows\Media\MACsnd\Person Join.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Person Joins\MACsnd
+HKCU,AppEvents\Schemes\Apps\Conf\Person Joins\MACsnd,,,"C:\Windows\Media\MACsnd\Person Join.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Person Leaves\.Current,,,"C:\Windows\Media\MACsnd\Person Leave.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Person Leaves\MACsnd
+HKCU,AppEvents\Schemes\Apps\Conf\Person Leaves\MACsnd,,,"C:\Windows\Media\MACsnd\Person Leave.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Call\.Current,,,"C:\Windows\Media\MACsnd\Receive Call.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Call\MACsnd
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Call\MACsnd,,,"C:\Windows\Media\MACsnd\Receive Call.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Request to Join\.Current,,,"C:\Windows\Media\MACsnd\Receive Request.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Request to Join\MACsnd
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Request to Join\MACsnd,,,"C:\Windows\Media\MACsnd\Receive Request.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\ActivatingDocument\.Current,,,"C:\Windows\Media\MACsnd\Complete Navigation.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\ActivatingDocument\MACsnd
+HKCU,AppEvents\Schemes\Apps\Explorer\ActivatingDocument\MACsnd,,,"C:\Windows\Media\MACsnd\Complete Navigation.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\.Current,,,"C:\Windows\Media\MACsnd\Empty Recycle.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\MACsnd
+HKCU,AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\MACsnd,,,"C:\Windows\Media\MACsnd\Empty Recycle.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\MoveMenuItem\.Current,,,"C:\Windows\Media\MACsnd\Move Menu.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\MoveMenuItem\MACsnd
+HKCU,AppEvents\Schemes\Apps\Explorer\MoveMenuItem\MACsnd,,,"C:\Windows\Media\MACsnd\Move Menu.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\Navigating\.Current,,,"C:\Windows\Media\MACsnd\Start Navigation.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\Navigating\MACsnd
+HKCU,AppEvents\Schemes\Apps\Explorer\Navigating\MACsnd,,,"C:\Windows\Media\MACsnd\Start Navigation.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_ContactOnline\.Current,,,"C:\Windows\Media\MACsnd\Contact Online.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_ContactOnline\MACsnd
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_ContactOnline\MACsnd,,,"C:\Windows\Media\MACsnd\Contact Online.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewAlert\.Current,,,"C:\Windows\Media\MACsnd\New Alert.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewAlert\MACsnd
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewAlert\MACsnd,,,"C:\Windows\Media\MACsnd\New Alert.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMail\.Current,,,"C:\Windows\Media\MACsnd\New Mail.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMail\MACsnd
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMail\MACsnd,,,"C:\Windows\Media\MACsnd\New Mail.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMessage\.Current,,,"C:\Windows\Media\MACsnd\New Messages.wav"
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMessage\MACsnd
+HKCU,AppEvents\Schemes\Apps\MSMSGS\MSMSGS_NewMessage\MACsnd,,,"C:\Windows\Media\MACsnd\New Messages.wav"
+HKCU,AppEvents\Schemes\Names\MACsnd
+HKCU,AppEvents\Schemes\Names\MACsnd,,,"MAC Sound"
+HKLM,Software\Microsoft\Windows\CurrentVersion\Uninstall\MACsnd
+HKLM,Software\Microsoft\Windows\CurrentVersion\Uninstall\MACsnd,DisplayName,,"MAC Sound"
+HKLM,Software\Microsoft\Windows\CurrentVersion\Uninstall\MACsnd,UninstallString,,"rundll32.exe syssetup.dll,SetupInfObjectInstallAction DefaultUninstall 132 %17%\MACSound.inf"
+
+[DefaultReg]
+HKCU,AppEvents\Schemes,,,".default"
+HKCU,AppEvents\Schemes\Apps\.Default\.Default\.Current,,,"Windows XP Ding.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\.Current,,,"Windows XP Battery Critical.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceConnect\.Current,,,"Windows XP Hardware Insert.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceDisconnect\.Current,,,"Windows XP Hardware Remove.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\DeviceFail\.Current,,,"Windows XP Hardware Fail.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\.Current,,,"Windows XP Battery Low.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\MailBeep\.Current,,,"Windows XP Notify.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemAsterisk\.Current,,,"Windows XP Error.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExclamation\.Current,,,"Windows XP Exclamation.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemExit\.Current,,,"Windows XP Shutdown.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemHand\.Current,,,"Windows XP Critical Stop.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemNotification\.Current,,,"Windows XP Balloon.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\SystemStart\.Current,,,"Windows XP Startup.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogoff\.Current,,,"Windows XP Logoff Sound.wav"
+HKCU,AppEvents\Schemes\Apps\.Default\WindowsLogon\.Current,,,"Windows XP Logon Sound.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Call\.Current,,,"RingIn.wav"
+HKCU,AppEvents\Schemes\Apps\Conf\Receive Request to Join\.Current,,,"RingIn.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\ActivatingDocument\.Current,,,"Windows XP Notify.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\.Current,,,"Windows XP Recycle.wav"
+HKCU,AppEvents\Schemes\Apps\Explorer\Navigating\.Current,,,"Windows XP Start.wav"
diff --git a/sounds/MacSounds/MACSound/Maximize.wav b/sounds/MacSounds/MACSound/Maximize.wav
new file mode 100644
index 0000000..6bf5a02
Binary files /dev/null and b/sounds/MacSounds/MACSound/Maximize.wav differ
diff --git a/sounds/MacSounds/MACSound/Menu Command.wav b/sounds/MacSounds/MACSound/Menu Command.wav
new file mode 100644
index 0000000..206c238
Binary files /dev/null and b/sounds/MacSounds/MACSound/Menu Command.wav differ
diff --git a/sounds/MacSounds/MACSound/Menu Popup.wav b/sounds/MacSounds/MACSound/Menu Popup.wav
new file mode 100644
index 0000000..91fbab8
Binary files /dev/null and b/sounds/MacSounds/MACSound/Menu Popup.wav differ
diff --git a/sounds/MacSounds/MACSound/Minimize.wav b/sounds/MacSounds/MACSound/Minimize.wav
new file mode 100644
index 0000000..97705e6
Binary files /dev/null and b/sounds/MacSounds/MACSound/Minimize.wav differ
diff --git a/sounds/MacSounds/MACSound/Move Menu.wav b/sounds/MacSounds/MACSound/Move Menu.wav
new file mode 100644
index 0000000..44e8ce5
Binary files /dev/null and b/sounds/MacSounds/MACSound/Move Menu.wav differ
diff --git a/sounds/MacSounds/MACSound/New Alert.wav b/sounds/MacSounds/MACSound/New Alert.wav
new file mode 100644
index 0000000..e6c546c
Binary files /dev/null and b/sounds/MacSounds/MACSound/New Alert.wav differ
diff --git a/sounds/MacSounds/MACSound/New Mail.wav b/sounds/MacSounds/MACSound/New Mail.wav
new file mode 100644
index 0000000..3b8d930
Binary files /dev/null and b/sounds/MacSounds/MACSound/New Mail.wav differ
diff --git a/sounds/MacSounds/MACSound/New Messages.wav b/sounds/MacSounds/MACSound/New Messages.wav
new file mode 100644
index 0000000..cad03a6
Binary files /dev/null and b/sounds/MacSounds/MACSound/New Messages.wav differ
diff --git a/sounds/MacSounds/MACSound/Open.wav b/sounds/MacSounds/MACSound/Open.wav
new file mode 100644
index 0000000..f80357f
Binary files /dev/null and b/sounds/MacSounds/MACSound/Open.wav differ
diff --git a/sounds/MacSounds/MACSound/Person Join.wav b/sounds/MacSounds/MACSound/Person Join.wav
new file mode 100644
index 0000000..6f6c45b
Binary files /dev/null and b/sounds/MacSounds/MACSound/Person Join.wav differ
diff --git a/sounds/MacSounds/MACSound/Person Leave.wav b/sounds/MacSounds/MACSound/Person Leave.wav
new file mode 100644
index 0000000..d9820e8
Binary files /dev/null and b/sounds/MacSounds/MACSound/Person Leave.wav differ
diff --git a/sounds/MacSounds/MACSound/Print Complete.wav b/sounds/MacSounds/MACSound/Print Complete.wav
new file mode 100644
index 0000000..3bacc88
Binary files /dev/null and b/sounds/MacSounds/MACSound/Print Complete.wav differ
diff --git a/sounds/MacSounds/MACSound/Program Error.wav b/sounds/MacSounds/MACSound/Program Error.wav
new file mode 100644
index 0000000..99614a8
Binary files /dev/null and b/sounds/MacSounds/MACSound/Program Error.wav differ
diff --git a/sounds/MacSounds/MACSound/Question.wav b/sounds/MacSounds/MACSound/Question.wav
new file mode 100644
index 0000000..6ba65ad
Binary files /dev/null and b/sounds/MacSounds/MACSound/Question.wav differ
diff --git a/sounds/MacSounds/MACSound/Receive Call.wav b/sounds/MacSounds/MACSound/Receive Call.wav
new file mode 100644
index 0000000..34b1124
Binary files /dev/null and b/sounds/MacSounds/MACSound/Receive Call.wav differ
diff --git a/sounds/MacSounds/MACSound/Receive Request.wav b/sounds/MacSounds/MACSound/Receive Request.wav
new file mode 100644
index 0000000..5bfc95e
Binary files /dev/null and b/sounds/MacSounds/MACSound/Receive Request.wav differ
diff --git a/sounds/MacSounds/MACSound/Restore Down.wav b/sounds/MacSounds/MACSound/Restore Down.wav
new file mode 100644
index 0000000..1d5fae5
Binary files /dev/null and b/sounds/MacSounds/MACSound/Restore Down.wav differ
diff --git a/sounds/MacSounds/MACSound/Restore Up.wav b/sounds/MacSounds/MACSound/Restore Up.wav
new file mode 100644
index 0000000..3a8c8ef
Binary files /dev/null and b/sounds/MacSounds/MACSound/Restore Up.wav differ
diff --git a/sounds/MacSounds/MACSound/Select.wav b/sounds/MacSounds/MACSound/Select.wav
new file mode 100644
index 0000000..68e4a7b
Binary files /dev/null and b/sounds/MacSounds/MACSound/Select.wav differ
diff --git a/sounds/MacSounds/MACSound/Show Toolbar.wav b/sounds/MacSounds/MACSound/Show Toolbar.wav
new file mode 100644
index 0000000..4cb3d54
Binary files /dev/null and b/sounds/MacSounds/MACSound/Show Toolbar.wav differ
diff --git a/sounds/MacSounds/MACSound/Start Navigation.wav b/sounds/MacSounds/MACSound/Start Navigation.wav
new file mode 100644
index 0000000..d2f0489
Binary files /dev/null and b/sounds/MacSounds/MACSound/Start Navigation.wav differ
diff --git a/sounds/MacSounds/MACSound/Start Windows.wav b/sounds/MacSounds/MACSound/Start Windows.wav
new file mode 100644
index 0000000..c499a5b
Binary files /dev/null and b/sounds/MacSounds/MACSound/Start Windows.wav differ
diff --git a/sounds/MacSounds/MACSound/System Notifi.wav b/sounds/MacSounds/MACSound/System Notifi.wav
new file mode 100644
index 0000000..df7f305
Binary files /dev/null and b/sounds/MacSounds/MACSound/System Notifi.wav differ
diff --git a/sounds/MacSounds/MACSound/Windows XP start.wav b/sounds/MacSounds/MACSound/Windows XP start.wav
new file mode 100644
index 0000000..d2f0489
Binary files /dev/null and b/sounds/MacSounds/MACSound/Windows XP start.wav differ
diff --git a/sounds/MacSounds/MACSound/Windows exit.wav b/sounds/MacSounds/MACSound/Windows exit.wav
new file mode 100644
index 0000000..d2f0489
Binary files /dev/null and b/sounds/MacSounds/MACSound/Windows exit.wav differ
diff --git a/sounds/track01.mp3 b/sounds/track01.mp3
new file mode 100644
index 0000000..44afae2
Binary files /dev/null and b/sounds/track01.mp3 differ
diff --git a/status.sh b/status.sh
new file mode 100755
index 0000000..b9788e2
--- /dev/null
+++ b/status.sh
@@ -0,0 +1,22 @@
+# The Sway configuration file in ~/.config/sway/config calls this script.
+# You should see changes to the status bar after saving this script.
+# If not, do "killall swaybar" and $mod+Shift+c to reload the configuration.
+
+# Produces "21 days", for example
+uptime_formatted=$(uptime | cut -d ',' -f1 | cut -d ' ' -f4,5)
+
+# The abbreviated weekday (e.g., "Sat"), followed by the ISO-formatted date
+# like 2018-10-06 and the time (e.g., 14:01)
+date_formatted=$(date "+%a %F %H:%M")
+
+# Get the Linux version but remove the "-1-ARCH" part
+#linux_version=$(uname -r | cut -d '-' -f1)
+linux_version=$(uname -r)
+
+# Returns the battery capacity left:
+battery_status=$(cat /sys/class/power_supply/BAT0/capacity)
+
+# Emojis and characters for the status bar
+# 💎 💻 💡 🔌 ⚡ 📁 \|
+echo $uptime_formatted ↑ $linux_version ⚡$battery_status $date_formatted
+
diff --git a/wallpaper.sh b/wallpaper.sh
new file mode 100755
index 0000000..cf3bb39
--- /dev/null
+++ b/wallpaper.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+swaybg -i $(find ./Wallpapers -type f | shuf -n 1) -m fill &
+
+OLD_PID=$!
+while true; do
+ sleep 6000
+ swaybg -i $(find ./Wallpapers -type f | shuf -n1) -m fill &
+ NEXT_PID=$!
+ sleep 5
+ kill $OLD_PID
+ OLD_PID=$NEXT_PID
+done
diff --git a/waybar.d/config b/waybar.d/config
new file mode 100644
index 0000000..f66b8c6
--- /dev/null
+++ b/waybar.d/config
@@ -0,0 +1,166 @@
+{
+ // "layer": "top", // Waybar at top layer
+ // "position": "bottom", // Waybar position (top|bottom|left|right)
+ "height": 30, // Waybar height (to be removed for auto height)
+ // "width": 1280, // Waybar width
+ "spacing": 4, // Gaps between modules (4px)
+ // Choose the order of the modules
+ "modules-left": ["sway/workspaces", "sway/mode", "sway/scratchpad", "custom/media"],
+ "modules-center": ["sway/window"],
+ "modules-right": ["mpd", "idle_inhibitor", "pulseaudio", "network", "cpu", "memory", "temperature", "backlight", "keyboard-state", "sway/language", "battery", "battery#bat2", "clock", "tray"],
+ // Modules configuration
+ // "sway/workspaces": {
+ // "disable-scroll": true,
+ // "all-outputs": true,
+ // "format": "{name}: {icon}",
+ // "format-icons": {
+ // "1": "",
+ // "2": "",
+ // "3": "",
+ // "4": "",
+ // "5": "",
+ // "urgent": "",
+ // "focused": "",
+ // "default": ""
+ // }
+ // },
+ "keyboard-state": {
+ "numlock": true,
+ "capslock": false,
+ "format": "{name} {icon}",
+ "format-icons": {
+ "locked": "",
+ "unlocked": ""
+ }
+ },
+ "sway/mode": {
+ "format": "{}"
+ },
+ "sway/scratchpad": {
+ "format": "{icon} {count}",
+ "show-empty": false,
+ "format-icons": ["", ""],
+ "tooltip": true,
+ "tooltip-format": "{app}: {title}"
+ },
+ "mpd": {
+ "format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ⸨{songPosition}|{queueLength}⸩ {volume}% ",
+ "format-disconnected": "Disconnected ",
+ "format-stopped": "{consumeIcon}{randomIcon}{repeatIcon}{singleIcon}Stopped ",
+ "unknown-tag": "N/A",
+ "interval": 2,
+ "consume-icons": {
+ "on": " "
+ },
+ "random-icons": {
+ "off": " ",
+ "on": " "
+ },
+ "repeat-icons": {
+ "on": " "
+ },
+ "single-icons": {
+ "on": "1 "
+ },
+ "state-icons": {
+ "paused": "",
+ "playing": ""
+ },
+ "tooltip-format": "MPD (connected)",
+ "tooltip-format-disconnected": "MPD (disconnected)"
+ },
+ "idle_inhibitor": {
+ "format": "{icon}",
+ "format-icons": {
+ "activated": "",
+ "deactivated": ""
+ }
+ },
+ "tray": {
+ // "icon-size": 21,
+ "spacing": 10
+ },
+ "clock": {
+ // "timezone": "America/New_York",
+ "tooltip-format": "{:%Y %B}\n{calendar}",
+ "format-alt": "{:%Y-%m-%d}"
+ },
+ "cpu": {
+ "format": "{usage}% ",
+ "tooltip": false
+ },
+ "memory": {
+ "format": "{}% "
+ },
+ "temperature": {
+ // "thermal-zone": 2,
+ // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
+ "critical-threshold": 80,
+ // "format-critical": "{temperatureC}°C {icon}",
+ "format": "{temperatureC}°C {icon}",
+ "format-icons": ["", "", ""]
+ },
+ "backlight": {
+ // "device": "acpi_video1",
+ "format": "{percent}% {icon}",
+ "format-icons": ["", "", "", "", "", "", "", "", ""]
+ },
+ "battery": {
+ "states": {
+ //"good": 95,
+ "warning": 30,
+ "critical": 15
+ },
+ "format": "{capacity}% {icon}",
+ "format-charging": "{capacity}% ",
+ "format-plugged": "{capacity}% ",
+ "format-alt": "{time} {icon}",
+ // "format-good": "", // An empty format will hide the module
+ // "format-full": "",
+ "format-icons": ["", "", "", "", ""]
+ },
+ "battery#bat2": {
+ "bat": "BAT2"
+ },
+ "network": {
+ // "interface": "wlp2*", // (Optional) To force the use of this interface
+ "format-wifi": "{essid} ({signalStrength}%) ",
+ "format-ethernet": "{ipaddr}/{cidr} ",
+ "tooltip-format": "{ifname} via {gwaddr} ",
+ "format-linked": "{ifname} (No IP) ",
+ "format-disconnected": "Disconnected ⚠",
+ "format-alt": "{ifname}: {ipaddr}/{cidr}"
+ },
+ "pulseaudio": {
+ // "scroll-step": 1, // %, can be a float
+ "format": "{volume}% {icon} {format_source}",
+ "format-bluetooth": "{volume}% {icon} {format_source}",
+ "format-bluetooth-muted": " {icon} {format_source}",
+ "format-muted": " {format_source}",
+ "format-source": "{volume}% ",
+ "format-source-muted": "",
+ "format-icons": {
+ "headphone": "",
+ "hands-free": "",
+ "headset": "",
+ "phone": "",
+ "portable": "",
+ "car": "",
+ "default": ["", "", ""]
+ },
+ "on-click": "pavucontrol"
+ },
+ "custom/media": {
+ "format": "{icon} {}",
+ "return-type": "json",
+ "max-length": 40,
+ "format-icons": {
+ "spotify": "",
+ "default": "🎜"
+ },
+ "escape": true,
+ "exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder
+ // "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name
+ }
+}
+
diff --git a/waybar.d/config.bac2 b/waybar.d/config.bac2
new file mode 100644
index 0000000..04d44f3
--- /dev/null
+++ b/waybar.d/config.bac2
@@ -0,0 +1,174 @@
+{
+
+ "modules-left": ["sway/window", "sway/mode"],
+ "modules-center": ["sway/workspaces"],
+ "modules-right": ["idle_inhibitor", "custom/gammastep", "pulseaudio", "pulseaudio#mic", "network#vpn", "network", "battery", "clock", "tray"],
+
+ "sway/window": {
+ "format": "{}",
+ "max-length": 50,
+ "rewrite": {
+ "": "\uf015 ",
+ "(.*) - Visual Studio Code": "\uf121 $1",
+ "(.*) - Brave": "\uf268 $1",
+ "xterm-kitty - (.*)": "\uf120 $1",
+ "(.*) — Mozilla Firefox": "\ue007 $1",
+ "Mozilla Firefox": "\ue007 Mozilla Firefox",
+ "xterm-kitty - (.*)": "\uf120 $1",
+ "(.*) - VIM": "\uf036 $1",
+ "Telegram (.*)": "\uf2c6 $1",
+ "(.*) - TextMaker": "\uf1c2 $1",
+ "(.*) - PlanMaker": "\uf1c3 $1",
+ "(.*) - Presentations": "\uf1c4 $1",
+ "/(.*)": "\uf07b /$1",
+ "ymuse": "\uf001 Ymuse",
+ "(.*) — 1Password": "\uf023 $1",
+ "Postman": "\uf6cc Postman",
+ "Volume Control": "\uf027 Volume Control",
+ "Input Method Configuration": "\uf11c Input Method Configuration",
+ "imv - (.*)": "\uf1c5 $1",
+ "(.*) - mpv": "\uf03d $1",
+ "smb://(.*)": "\uf6ff $1",
+ "network:///": "\uf6ff ",
+ "trash:///": "\uf2f8 ",
+ "mtp:/(.*)": "\uf3cd $1",
+ "afc:/(.*)": "\uf3cd $1",
+ "computer:///": "\uf108 ",
+ "ncmpcpp (.*)": "\uf001 ncmpcpp"
+ }
+ },
+
+ "sway/workspaces": {
+ "disable-scroll": true,
+ "all-outputs": true,
+ "format": "{value}",
+ "format-icons": {
+ "1": "",
+ "2": "",
+ "3": "3",
+ "4": "4",
+ "5": "5",
+ "6": "6",
+ "7": "7",
+ "8": "8",
+ "9": "9",
+ "10": "",
+ "urgent": ": ",
+ "focused": "",
+ "default": ""
+ }
+ },
+
+ "sway/mode": {
+ "format": "\uf054 {}"
+ },
+ "mpd": {
+ "format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {title}",
+ "format-disconnected": "",
+ "format-stopped": "\uf3b5",
+ "unknown-tag": "N/A",
+ "interval": 2,
+ "consume-icons": {
+ "on": " "
+
+ },
+ "random-icons": {
+ "on": " "
+ },
+ "repeat-icons": {
+ "on": " "
+ },
+ "single-icons": {
+ "on": "1 "
+ },
+ "state-icons": {
+ "paused": "",
+ "playing": ""
+ },
+ "on-click": "pkill ncmpcpp; kitty -e ncmpcpp",
+ "tooltip-format": "MPD (connected)",
+ "tooltip-format-disconnected": "MPD (disconnected)"
+ },
+ "idle_inhibitor": {
+ "format": "{icon}",
+ "format-icons": {
+ "activated": "\uf0f4",
+ "deactivated": "\uf0f4"
+ }
+ },
+ "tray": {
+
+ "spacing": 10,
+ "show-passive-items": true
+ },
+ "clock": {
+
+ "format": "{:\uf017 %H:%M}",
+ "format-alt": "{:\uf133 %A, %d %B, %Y}",
+ "tooltip-format": "{:%d %B, %Y}\n{calendar}"
+ },
+
+
+ "battery": {
+ "states": {
+ "warning": 30,
+ "critical": 15
+ },
+ "format": "{capacity}% {icon}",
+ "format-charging": "{capacity}% ",
+ "format-plugged": "{capacity}% ",
+ "format-alt": "{time} {icon}",
+ "format-full": "",
+ "format-icons": ["", "", "", "", ""]
+ },
+
+ "network": {
+ "interval": 5,
+ "format-wifi": "\uf1eb",
+ "format-ethernet": "\uf796",
+ "format-disconnected": "\uf127 Offline",
+ "tooltip-format": "{ifname}: {ipaddr}",
+ "tooltip-format-wifi": "{essid} ({signalStrength}%): {ipaddr}"
+ },
+ "network#vpn": {
+ "interval": 5,
+ "interface": "tun0",
+ "format": "\uf3ed",
+ "format-disconnected": "",
+ "tooltip-format": "VPN Connected: {ipaddr}"
+ },
+ "pulseaudio": {
+ "scroll-step": 1,
+ "format": "{volume}% {icon}",
+ "format-bluetooth": "{volume}% {icon}",
+ "format-bluetooth-muted": " {icon}",
+ "format-muted": "",
+ "format-source": "",
+ "format-source-muted": "",
+ "format-icons": {
+ "headphone": "",
+ "hands-free": "",
+ "headset": "",
+ "phone": "",
+ "portable": "",
+ "car": "",
+ "default": ["", "", ""]
+ },
+ "on-click": "pkill pulsemixer; kitty -e pulsemixer"
+ },
+ "pulseaudio#mic": {
+ "format": "{format_source}",
+ "format-source": "",
+ "format-source-muted": "",
+ "on-click": "pactl set-source-mute @DEFAULT_SOURCE@ toggle",
+ "tooltip": false
+ },
+ "custom/gammastep": {
+ "format": "{}",
+ "interval": 5,
+ "on-update": "",
+ "exec": "sleep 0.05; /usr/bin/gammastep.sh",
+ "on-click": "/usr/bin/gammastep.sh toggle"
+ }
+
+}
diff --git a/waybar.d/style.css b/waybar.d/style.css
new file mode 100644
index 0000000..cf5c5fb
--- /dev/null
+++ b/waybar.d/style.css
@@ -0,0 +1,280 @@
+* {
+ /* `otf-font-awesome` is required to be installed for icons */
+ font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;
+ font-size: 13px;
+}
+
+window#waybar {
+ background-color: rgba(43, 48, 59, 0.5);
+ border-bottom: 3px solid rgba(100, 114, 125, 0.5);
+ color: #ffffff;
+ transition-property: background-color;
+ transition-duration: .5s;
+}
+
+window#waybar.hidden {
+ opacity: 0.2;
+}
+
+/*
+window#waybar.empty {
+ background-color: transparent;
+}
+window#waybar.solo {
+ background-color: #FFFFFF;
+}
+*/
+
+window#waybar.termite {
+ background-color: #3F3F3F;
+}
+
+window#waybar.chromium {
+ background-color: #000000;
+ border: none;
+}
+
+button {
+ /* Use box-shadow instead of border so the text isn't offset */
+ box-shadow: inset 0 -3px transparent;
+ /* Avoid rounded borders under each button name */
+ border: none;
+ border-radius: 0;
+}
+
+/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
+button:hover {
+ background: inherit;
+ box-shadow: inset 0 -3px #ffffff;
+}
+
+#workspaces button {
+ padding: 0 5px;
+ background-color: transparent;
+ color: #ffffff;
+}
+
+#workspaces button:hover {
+ background: rgba(0, 0, 0, 0.2);
+}
+
+#workspaces button.focused {
+ background-color: #64727D;
+ box-shadow: inset 0 -3px #ffffff;
+}
+
+#workspaces button.urgent {
+ background-color: #eb4d4b;
+}
+
+#mode {
+ background-color: #64727D;
+ border-bottom: 3px solid #ffffff;
+}
+
+#clock,
+#battery,
+#cpu,
+#memory,
+#disk,
+#temperature,
+#backlight,
+#network,
+#pulseaudio,
+#wireplumber,
+#custom-media,
+#tray,
+#mode,
+#idle_inhibitor,
+#scratchpad,
+#mpd {
+ padding: 0 10px;
+ color: #ffffff;
+}
+
+#window,
+#workspaces {
+ margin: 0 4px;
+}
+
+/* If workspaces is the leftmost module, omit left margin */
+.modules-left > widget:first-child > #workspaces {
+ margin-left: 0;
+}
+
+/* If workspaces is the rightmost module, omit right margin */
+.modules-right > widget:last-child > #workspaces {
+ margin-right: 0;
+}
+
+#clock {
+ background-color: #64727D;
+}
+
+#battery {
+ background-color: #ffffff;
+ color: #000000;
+}
+
+#battery.charging, #battery.plugged {
+ color: #ffffff;
+ background-color: #26A65B;
+}
+
+@keyframes blink {
+ to {
+ background-color: #ffffff;
+ color: #000000;
+ }
+}
+
+#battery.critical:not(.charging) {
+ background-color: #f53c3c;
+ color: #ffffff;
+ animation-name: blink;
+ animation-duration: 0.5s;
+ animation-timing-function: linear;
+ animation-iteration-count: infinite;
+ animation-direction: alternate;
+}
+
+label:focus {
+ background-color: #000000;
+}
+
+#cpu {
+ background-color: #2ecc71;
+ color: #000000;
+}
+
+#memory {
+ background-color: #9b59b6;
+}
+
+#disk {
+ background-color: #964B00;
+}
+
+#backlight {
+ background-color: #90b1b1;
+}
+
+#network {
+ background-color: #2980b9;
+}
+
+#network.disconnected {
+ background-color: #f53c3c;
+}
+
+#pulseaudio {
+ background-color: #f1c40f;
+ color: #000000;
+}
+
+#pulseaudio.muted {
+ background-color: #90b1b1;
+ color: #2a5c45;
+}
+
+#wireplumber {
+ background-color: #fff0f5;
+ color: #000000;
+}
+
+#wireplumber.muted {
+ background-color: #f53c3c;
+}
+
+#custom-media {
+ background-color: #66cc99;
+ color: #2a5c45;
+ min-width: 100px;
+}
+
+#custom-media.custom-spotify {
+ background-color: #66cc99;
+}
+
+#custom-media.custom-vlc {
+ background-color: #ffa000;
+}
+
+#temperature {
+ background-color: #f0932b;
+}
+
+#temperature.critical {
+ background-color: #eb4d4b;
+}
+
+#tray {
+ background-color: #2980b9;
+}
+
+#tray > .passive {
+ -gtk-icon-effect: dim;
+}
+
+#tray > .needs-attention {
+ -gtk-icon-effect: highlight;
+ background-color: #eb4d4b;
+}
+
+#idle_inhibitor {
+ background-color: #2d3436;
+}
+
+#idle_inhibitor.activated {
+ background-color: #ecf0f1;
+ color: #2d3436;
+}
+
+#mpd {
+ background-color: #66cc99;
+ color: #2a5c45;
+}
+
+#mpd.disconnected {
+ background-color: #f53c3c;
+}
+
+#mpd.stopped {
+ background-color: #90b1b1;
+}
+
+#mpd.paused {
+ background-color: #51a37a;
+}
+
+#language {
+ background: #00b093;
+ color: #740864;
+ padding: 0 5px;
+ margin: 0 5px;
+ min-width: 16px;
+}
+
+#keyboard-state {
+ background: #97e1ad;
+ color: #000000;
+ padding: 0 0px;
+ margin: 0 5px;
+ min-width: 16px;
+}
+
+#keyboard-state > label {
+ padding: 0 5px;
+}
+
+#keyboard-state > label.locked {
+ background: rgba(0, 0, 0, 0.2);
+}
+
+#scratchpad {
+ background: rgba(0, 0, 0, 0.2);
+}
+
+#scratchpad.empty {
+ background-color: transparent;
+}
diff --git a/waybar.d/style.css.bac2 b/waybar.d/style.css.bac2
new file mode 100644
index 0000000..c5fce29
--- /dev/null
+++ b/waybar.d/style.css.bac2
@@ -0,0 +1,135 @@
+* {
+ border: none;
+ border-radius: 0;
+ font-family: "DejaVu Sans", "Font Awesome 5 Free";
+ font-size: 14px;
+}
+
+window .modules-left,
+window .modules-center,
+window .modules-right {
+ background: rgba(55, 59, 65, 0.85);
+ padding: 0px 8px 0px 8px;
+}
+
+window .modules-left {
+ border-top-right-radius: 16px;
+ border-bottom-right-radius: 16px;
+}
+
+window .modules-right {
+ border-top-left-radius: 16px;
+ border-bottom-left-radius: 16px;
+}
+
+window .modules-center {
+ border-radius: 16px;
+}
+window#waybar {
+ background: transparent;
+}
+
+window > box {
+ margin: 5px 0px 5px 0px;
+ padding: 0px 0px 0px 0px;
+ background: rgba(43, 48, 59, 0);
+ color: white;
+ border-radius: 16px;
+ min-height: 32px;
+}
+
+#workspaces button {
+ font-weight: bolder;
+ margin: 3px;
+ padding: 0px 2px 0px 2px;
+ background-color: transparent;
+ color: rgba(255, 255, 255, 0.5);
+ min-width: 24px;
+ box-shadow: inset 0 -3px transparent;
+}
+
+/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
+#workspaces button:hover {
+ background: transparent;
+ box-shadow: inset 0 -3px transparent;
+ color: rgba(255, 255, 255, 0.8);
+}
+
+#workspaces button.focused {
+ background: transparent;
+ box-shadow: inset 0 -3px #ffffff;
+ color: rgba(255, 255, 255, 1);
+}
+
+#workspaces button.urgent {
+ box-shadow: inset 0 -3px #cc6666;
+ color: #cc6666;
+}
+
+#clock,
+#battery,
+#cpu,
+#memory,
+#disk,
+#temperature,
+#backlight,
+#network,
+#pulseaudio,
+#custom-media,
+#tray,
+#mode,
+#idle_inhibitor,
+#mpd,
+#window,
+#workspaces,
+#custom-gammastep
+{
+ padding: 0px 8px 0px 8px;
+ margin: 0 5px;
+ color: #ffffff;
+}
+
+#mode {
+ font-weight: bolder;
+ color: #f0c674;
+}
+
+#mpd.stopped {
+ color: rgba(255, 255, 255, 0.3);
+}
+
+#idle_inhibitor.deactivated {
+ color: rgba(255, 255, 255, 0.3);
+}
+
+#network.disconnected, #network.disabled {
+ color: rgba(255, 255, 255, 0.3);
+}
+
+#clock {
+ font-weight: bolder;
+}
+
+@keyframes blink {
+ to {
+ color: #ffffff;
+ }
+}
+
+#battery.critical:not(.charging) {
+ /* background-color: #f53c3c; */
+ color: #ffffff;
+ animation-name: blink;
+ animation-duration: 0.5s;
+ animation-timing-function: linear;
+ animation-iteration-count: infinite;
+ animation-direction: alternate;
+}
+
+#tray > .passive {
+ -gtk-icon-effect: dim;
+}
+
+#tray > .needs-attention {
+ -gtk-icon-effect: highlight;
+}