added current dotfiles for sway
This commit is contained in:
commit
9ca2f3d2de
Binary file not shown.
After Width: | Height: | Size: 1.3 MiB |
Binary file not shown.
After Width: | Height: | Size: 6.9 MiB |
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
|
@ -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
|
|
@ -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/*
|
|
@ -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
|
||||
|
||||
|
|
@ -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'
|
||||
|
||||
|
|
@ -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'
|
||||
|
||||
|
|
@ -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%
|
|
@ -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%
|
Binary file not shown.
After Width: | Height: | Size: 1.6 MiB |
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
FILENAME="screenshot-`date +%F-%T`"
|
||||
grim -g "$(slurp)" ~/Pictures/screenshots/$FILENAME.png
|
|
@ -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
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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"
|
|
@ -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"
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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
|
||||
|
|
@ -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
|
|
@ -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": "<span style=\"italic\">{}</span>"
|
||||
},
|
||||
"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": "<span color=\"#f53c3c\"></span> ",
|
||||
"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": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"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
|
||||
}
|
||||
}
|
||||
|
|
@ -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": "<big>{:%d %B, %Y}</big>\n<tt><small>{calendar}</small></tt>"
|
||||
},
|
||||
|
||||
|
||||
"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"
|
||||
}
|
||||
|
||||
}
|
|
@ -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;
|
||||
}
|
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue