Compare commits
1 Commits
b8a6460dc0
...
ae3a74ce8e
| Author | SHA1 | Date | |
|---|---|---|---|
| ae3a74ce8e |
@@ -1,13 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# Script to add 144Hz mode to i3
|
|
||||||
|
|
||||||
echo "Adding 144Hz mode to i3..."
|
|
||||||
|
|
||||||
DISPLAY="DisplayPort-0"
|
|
||||||
MODE="2560x1440_144.00_rb2"
|
|
||||||
|
|
||||||
xrandr --newmode $MODE 586.59 2560 2568 2600 2640 1440 1529 1537 1543 +hsync -vsync
|
|
||||||
xrandr --addmode $DISPLAY $MODE
|
|
||||||
xrandr --output $DISPLAY --mode $MODE
|
|
||||||
|
|
||||||
echo "144Hz mode should now be active. Check with: xrandr"
|
|
||||||
|
Before Width: | Height: | Size: 4.2 MiB After Width: | Height: | Size: 4.2 MiB |
28
home_dotfiles/.aliases
Normal file
28
home_dotfiles/.aliases
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
### Zoxide zfish wish repo info
|
||||||
|
LAST_REPO=""
|
||||||
|
function __zoxide_z() {
|
||||||
|
if [ "$#" -eq 0 ]; then
|
||||||
|
__zoxide_cd ~
|
||||||
|
elif [ "$#" -eq 1 ] && [ "$1" = '-' ]; then
|
||||||
|
if [ -n "${OLDPWD}" ]; then
|
||||||
|
__zoxide_cd "${OLDPWD}"
|
||||||
|
else
|
||||||
|
# shellcheck disable=SC2016
|
||||||
|
\builtin printf 'zoxide: $OLDPWD is not set'
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
elif [ "$#" -eq 1 ] && [ -d "$1" ]; then
|
||||||
|
__zoxide_cd "$1"
|
||||||
|
else
|
||||||
|
\builtin local result
|
||||||
|
result="$(zoxide query --exclude "$(__zoxide_pwd)" -- "$@")" \
|
||||||
|
&& __zoxide_cd "${result}"
|
||||||
|
fi
|
||||||
|
git rev-parse 2>/dev/null
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
if [ "$LAST_REPO" != $(basename $(git rev-parse --show-toplevel)) ]; then
|
||||||
|
onefetch
|
||||||
|
LAST_REPO=$(basename $(git rev-parse --show-toplevel))
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
@@ -71,20 +71,14 @@ set $filemanager thunar
|
|||||||
# output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
|
# output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
|
||||||
output * bg /home/raga/.config/sway/wallpaper.jpg fill
|
output * bg /home/raga/.config/sway/wallpaper.jpg fill
|
||||||
|
|
||||||
# Multi-monitor setup
|
# 144Hz monitor configuration
|
||||||
# You can get your output names by running: swaymsg -t get_outputs
|
# Add custom 144Hz mode for your monitor
|
||||||
# DP-2 is the primary monitor on the left, and DP-1 is on the right.
|
# Using the same timing as your xrandr command: 586.59 2560 2568 2600 2640 1440 1529 1537 1543 +hsync -vsync
|
||||||
output HDMI-A-1 {
|
output HDMI-A-1 {
|
||||||
#output DP-2 {
|
modeline 586.59 2560 2568 2600 2640 1440 1529 1537 1543 +hsync -vsync
|
||||||
# mode 2560x1440@60Hz
|
|
||||||
mode 2560x1440@120Hz
|
|
||||||
position 0 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
output DP-1 {
|
# You can get the names of your outputs by running: swaymsg -t get_outputs
|
||||||
modeline 586.59 2560 2568 2600 2640 1440 1529 1537 1543 +hsync -vsync
|
|
||||||
position 2560 0
|
|
||||||
}
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Idle configuration
|
# Idle configuration
|
||||||
@@ -471,8 +465,7 @@ bindsym $mod+i bar mode toggle
|
|||||||
bar {
|
bar {
|
||||||
position bottom
|
position bottom
|
||||||
mode dock
|
mode dock
|
||||||
#font pango:monospace 10
|
font pango:monospace 10
|
||||||
font pango: FontAwesome, monospace 10
|
|
||||||
separator_symbol " "
|
separator_symbol " "
|
||||||
strip_workspace_numbers yes
|
strip_workspace_numbers yes
|
||||||
workspace_min_width 36
|
workspace_min_width 36
|
||||||
@@ -487,9 +480,9 @@ bar {
|
|||||||
|
|
||||||
# border backgr. text
|
# border backgr. text
|
||||||
focused_workspace #000000 #ffffff #000000
|
focused_workspace #000000 #ffffff #000000
|
||||||
active_workspace #ffffff #000000 #ffffff
|
active_workspace #000000 #000000 #ffffff
|
||||||
inactive_workspace #000000 #000000 #ffffff
|
inactive_workspace #000000 #000000 #ffffff
|
||||||
urgent_workspace #000000 #ff0000 #ffffff
|
urgent_workspace #000000 #ff0000 #000000
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -511,5 +504,3 @@ exec --no-startup-id nm-applet
|
|||||||
|
|
||||||
# Include additional config files if they exist
|
# Include additional config files if they exist
|
||||||
include /etc/sway/config.d/*
|
include /etc/sway/config.d/*
|
||||||
|
|
||||||
bindsym $mod+x exec "$(file="/tmp/click"; if test "0" = "$(cat "$file")"; then printf '1\n' > "$file"; else printf '0\n' > "$file"; fi)"
|
|
||||||
|
|||||||
@@ -16,8 +16,6 @@ format_alt = " $icon $frequency{ $boost} "
|
|||||||
block = "memory"
|
block = "memory"
|
||||||
format = " $icon $mem_used_percents.eng(w:2) "
|
format = " $icon $mem_used_percents.eng(w:2) "
|
||||||
interval = 10
|
interval = 10
|
||||||
warning_mem = 80.0
|
|
||||||
critical_mem = 90.0
|
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "battery"
|
block = "battery"
|
||||||
@@ -85,4 +83,4 @@ format = " $icon $timestamp.datetime(f:'%Y-%m-%d %H:%M:%S') "
|
|||||||
interval = 1
|
interval = 1
|
||||||
|
|
||||||
[icons]
|
[icons]
|
||||||
icons = "awesome6"
|
icons = "awesome4"
|
||||||
|
|||||||
@@ -1,275 +0,0 @@
|
|||||||
# Swayimg configuration file.
|
|
||||||
# vim: filetype=dosini
|
|
||||||
|
|
||||||
# This file contains the default configuration.
|
|
||||||
# The viewer searches for the config file in the following locations:
|
|
||||||
# 1. $XDG_CONFIG_HOME/swayimg/config
|
|
||||||
# 2. $HOME/.config/swayimg/config
|
|
||||||
# 3. $XDG_CONFIG_DIRS/swayimg/config
|
|
||||||
# 4. /etc/xdg/swayimg/config
|
|
||||||
|
|
||||||
# Any of these options can be overridden using the --config argument
|
|
||||||
# on the command line, for instance:
|
|
||||||
# $ swayimg --config="general.mode=gallery"
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# General configuration
|
|
||||||
################################################################################
|
|
||||||
[general]
|
|
||||||
# Mode at startup (viewer/slideshow/gallery)
|
|
||||||
mode = viewer
|
|
||||||
# Window size (fullscreen/image, or absolute size)
|
|
||||||
size = 1280,720
|
|
||||||
# Sway/Hyprland only: Window position (auto or absolute coordinates, e.g. 10,20)
|
|
||||||
position = auto
|
|
||||||
# Sway/Hyprland only: create floating window above the currently focused one
|
|
||||||
overlay = yes
|
|
||||||
# Use window decoration (yes/no)
|
|
||||||
decoration = no
|
|
||||||
# Action performed by SIGUSR1 signal (same format as for key bindings)
|
|
||||||
sigusr1 = reload
|
|
||||||
# Action performed by SIGUSR2 signal (same format as for key bindings)
|
|
||||||
sigusr2 = next_file
|
|
||||||
# Application ID and window class name
|
|
||||||
app_id = swayimg
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Viewer mode configuration
|
|
||||||
################################################################################
|
|
||||||
[viewer]
|
|
||||||
# Window background color (auto/extend/mirror/RGBA)
|
|
||||||
window = #00000000
|
|
||||||
# Background for transparent images (grid/RGBA)
|
|
||||||
transparency = grid
|
|
||||||
# Default image scale (optimal/width/height/fit/fill/real/keep)
|
|
||||||
scale = optimal
|
|
||||||
# Initial image position on the window (center/top/bottom/free/...)
|
|
||||||
position = center
|
|
||||||
# Anti-aliasing mode (none/box/bilinear/bicubic/mks13)
|
|
||||||
antialiasing = mks13
|
|
||||||
# Loop image list: jump to first image when end of list is reached (yes/no)
|
|
||||||
loop = yes
|
|
||||||
# Number of previously viewed images to store in cache
|
|
||||||
history = 1
|
|
||||||
# Number of preloaded images (read ahead)
|
|
||||||
preload = 1
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Slideshow mode configuration
|
|
||||||
################################################################################
|
|
||||||
[slideshow]
|
|
||||||
# Slideshow image display time (seconds)
|
|
||||||
time = 3
|
|
||||||
# Window background color (auto/extend/mirror/RGBA)
|
|
||||||
window = auto
|
|
||||||
# Background for transparent images (grid/RGBA)
|
|
||||||
transparency = #000000ff
|
|
||||||
# Default image scale (optimal/width/height/fit/fill/real)
|
|
||||||
scale = fit
|
|
||||||
# Initial image position on the window (center/top/bottom/free/...)
|
|
||||||
position = center
|
|
||||||
# Anti-aliasing mode (none/box/bilinear/bicubic/mks13)
|
|
||||||
antialiasing = mks13
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Gallery mode configuration
|
|
||||||
################################################################################
|
|
||||||
[gallery]
|
|
||||||
# Height and width of each thumbnail (pixels)
|
|
||||||
size = 200
|
|
||||||
# Max number of invisible thumbnails stored in memory cache
|
|
||||||
cache = 100
|
|
||||||
# Load not only visible but also adjacent thumbnails
|
|
||||||
preload = no
|
|
||||||
# Enable/disable storing thumbnails in persistent storage (yes/no)
|
|
||||||
pstore = no
|
|
||||||
# Fill the entire tile with thumbnail (yes/no)
|
|
||||||
fill = yes
|
|
||||||
# Anti-aliasing mode for thumbnails (none/box/bilinear/bicubic/mks13)
|
|
||||||
antialiasing = mks13
|
|
||||||
# Background color of the window (RGBA)
|
|
||||||
window = #00000000
|
|
||||||
# Background color of non-selected tiles (RGBA)
|
|
||||||
background = #202020ff
|
|
||||||
# Background color of the selected tile (RGBA)
|
|
||||||
select = #404040ff
|
|
||||||
# Border color of the selected tile (RGBA)
|
|
||||||
border = #000000ff
|
|
||||||
# Shadow color of the selected tile (RGBA)
|
|
||||||
shadow = #000000ff
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Image list configuration
|
|
||||||
################################################################################
|
|
||||||
[list]
|
|
||||||
# Default order (none/alpha/numeric/mtime/size/random)
|
|
||||||
order = alpha
|
|
||||||
# Reverse order (yes/no)
|
|
||||||
reverse = no
|
|
||||||
# Read directories recursively (yes/no)
|
|
||||||
recursive = no
|
|
||||||
# Add files from the same directory as the first file (yes/no)
|
|
||||||
all = no
|
|
||||||
# Enable file system monitoring for adding new images to the list (yes/no)
|
|
||||||
fsmon = yes
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Font configuration
|
|
||||||
################################################################################
|
|
||||||
[font]
|
|
||||||
# Font name
|
|
||||||
name = monospace
|
|
||||||
# Font size (pt)
|
|
||||||
size = 14
|
|
||||||
# Font color (RGBA)
|
|
||||||
color = #ccccccff
|
|
||||||
# Shadow color (RGBA)
|
|
||||||
shadow = #000000d0
|
|
||||||
# Background color (RGBA)
|
|
||||||
background = #00000000
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Image meta info scheme (format, size, EXIF, etc.)
|
|
||||||
################################################################################
|
|
||||||
[info]
|
|
||||||
# Show on startup (yes/no)
|
|
||||||
show = yes
|
|
||||||
# Timeout to hide info (seconds, 0 to always show)
|
|
||||||
info_timeout = 5
|
|
||||||
# Timeout to hide status message (seconds)
|
|
||||||
status_timeout = 3
|
|
||||||
|
|
||||||
# Display scheme for viewer mode (position = content)
|
|
||||||
[info.viewer]
|
|
||||||
top_left = +name,+format,+filesize,+imagesize,+exif
|
|
||||||
top_right = index
|
|
||||||
bottom_left = scale,frame
|
|
||||||
bottom_right = status
|
|
||||||
|
|
||||||
# Display scheme for slideshow mode (position = content)
|
|
||||||
[info.slideshow]
|
|
||||||
top_left = none
|
|
||||||
top_right = none
|
|
||||||
bottom_left = none
|
|
||||||
bottom_right = dir,status
|
|
||||||
|
|
||||||
# Display scheme for gallery mode (position = content)
|
|
||||||
[info.gallery]
|
|
||||||
top_left = none
|
|
||||||
top_right = index
|
|
||||||
bottom_left = none
|
|
||||||
bottom_right = name,status
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Viewer mode key binding configuration: key = action [parameters]
|
|
||||||
################################################################################
|
|
||||||
[keys.viewer]
|
|
||||||
F1 = help
|
|
||||||
Home = first_file
|
|
||||||
End = last_file
|
|
||||||
Prior = prev_file
|
|
||||||
Next = next_file
|
|
||||||
Space = next_file
|
|
||||||
Shift+r = rand_file
|
|
||||||
Shift+d = prev_dir
|
|
||||||
d = next_dir
|
|
||||||
Shift+o = prev_frame
|
|
||||||
o = next_frame
|
|
||||||
c = skip_file
|
|
||||||
s = mode slideshow
|
|
||||||
n = animation
|
|
||||||
f = fullscreen
|
|
||||||
Return = mode gallery
|
|
||||||
Left = step_left 10
|
|
||||||
Right = step_right 10
|
|
||||||
Up = step_up 10
|
|
||||||
Down = step_down 10
|
|
||||||
Equal = zoom +10
|
|
||||||
Plus = zoom +10
|
|
||||||
Minus = zoom -10
|
|
||||||
w = zoom width
|
|
||||||
Shift+w = zoom height
|
|
||||||
z = zoom fit
|
|
||||||
Shift+z = zoom fill
|
|
||||||
0 = zoom real
|
|
||||||
BackSpace = zoom optimal
|
|
||||||
k = zoom keep
|
|
||||||
Alt+s = zoom
|
|
||||||
bracketleft = rotate_left
|
|
||||||
bracketright = rotate_right
|
|
||||||
m = flip_vertical
|
|
||||||
Shift+m = flip_horizontal
|
|
||||||
a = antialiasing
|
|
||||||
r = reload
|
|
||||||
i = info
|
|
||||||
Shift+Delete = exec trash-put '%' && echo "File trashed: %"; skip_file
|
|
||||||
Escape = exit
|
|
||||||
q = exit
|
|
||||||
# Mouse related
|
|
||||||
ScrollLeft = step_right 5
|
|
||||||
ScrollRight = step_left 5
|
|
||||||
ScrollUp = step_up 5
|
|
||||||
ScrollDown = step_down 5
|
|
||||||
Ctrl+ScrollUp = zoom +10
|
|
||||||
Ctrl+ScrollDown = zoom -10
|
|
||||||
Shift+ScrollUp = prev_file
|
|
||||||
Shift+ScrollDown = next_file
|
|
||||||
Alt+ScrollUp = prev_frame
|
|
||||||
Alt+ScrollDown = next_frame
|
|
||||||
MouseLeft = drag
|
|
||||||
MouseSide = prev_file
|
|
||||||
MouseExtra = next_file
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Slideshow mode key binding configuration: key = action [parameters]
|
|
||||||
################################################################################
|
|
||||||
[keys.slideshow]
|
|
||||||
F1 = help
|
|
||||||
Home = first_file
|
|
||||||
End = last_file
|
|
||||||
Prior = prev_file
|
|
||||||
Next = next_file
|
|
||||||
Shift+r = rand_file
|
|
||||||
Shift+d = prev_dir
|
|
||||||
d = next_dir
|
|
||||||
Space = pause
|
|
||||||
i = info
|
|
||||||
f = fullscreen
|
|
||||||
Return = mode
|
|
||||||
Escape = exit
|
|
||||||
q = exit
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Gallery mode key binding configuration: key = action [parameters]
|
|
||||||
################################################################################
|
|
||||||
[keys.gallery]
|
|
||||||
F1 = help
|
|
||||||
Home = first_file
|
|
||||||
End = last_file
|
|
||||||
Left = step_left
|
|
||||||
Right = step_right
|
|
||||||
Up = step_up
|
|
||||||
Down = step_down
|
|
||||||
Prior = page_up
|
|
||||||
Next = page_down
|
|
||||||
c = skip_file
|
|
||||||
s = mode slideshow
|
|
||||||
f = fullscreen
|
|
||||||
Return = mode viewer
|
|
||||||
a = antialiasing
|
|
||||||
r = reload
|
|
||||||
i = info
|
|
||||||
Equal = thumb +20
|
|
||||||
Plus = thumb +20
|
|
||||||
Minus = thumb -20
|
|
||||||
Shift+Delete = exec trash-put '%' && echo "File trashed: %"; skip_file
|
|
||||||
Escape = exit
|
|
||||||
q = exit
|
|
||||||
# Mouse related
|
|
||||||
ScrollLeft = step_right
|
|
||||||
ScrollRight = step_left
|
|
||||||
ScrollUp = step_up
|
|
||||||
ScrollDown = step_down
|
|
||||||
Ctrl+ScrollUp = thumb +20
|
|
||||||
Ctrl+ScrollDown = thumb -20
|
|
||||||
MouseLeft = mode viewer
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 5.6 MiB |
@@ -34,12 +34,6 @@ echo "Installing main Sway config..."
|
|||||||
cp $SCRIPT_DIR/home_dotfiles/.config/sway/config ~/.config/sway/config
|
cp $SCRIPT_DIR/home_dotfiles/.config/sway/config ~/.config/sway/config
|
||||||
echo "✓ Sway config installed to ~/.config/sway/config"
|
echo "✓ Sway config installed to ~/.config/sway/config"
|
||||||
|
|
||||||
# === SWAYIMG CONFIG ===
|
|
||||||
echo ""
|
|
||||||
echo "Installing swayimg config..."
|
|
||||||
cp $SCRIPT_DIR/home_dotfiles/.config/swayimg/swayimgrc ~/.config/swayimg/swayimgrc
|
|
||||||
echo "✓ Swayimg config installed to ~/.config/swayimg/swayimgrc"
|
|
||||||
|
|
||||||
# === I3STATUS-RUST CONFIG ===
|
# === I3STATUS-RUST CONFIG ===
|
||||||
# Comment out this section if you don't want i3status-rust
|
# Comment out this section if you don't want i3status-rust
|
||||||
echo ""
|
echo ""
|
||||||
@@ -64,7 +58,7 @@ echo "✓ Bluetooth script installed to ~/.config/sway/bluetooth-sway.sh"
|
|||||||
|
|
||||||
# === VOLUME NOTIFY SCRIPT ===
|
# === VOLUME NOTIFY SCRIPT ===
|
||||||
# Comment out this section if you don't want volume notifications
|
# Comment out this section if you don't want volume notifications
|
||||||
if [ -f $SCRIPT_DIR/home_dotfiles/.config/sway/volume-notify-sway.sh ]; then
|
if [ -f volume-notify-sway.sh ]; then
|
||||||
echo ""
|
echo ""
|
||||||
echo "Installing volume notify script..."
|
echo "Installing volume notify script..."
|
||||||
cp $SCRIPT_DIR/home_dotfiles/.config/sway/volume-notify-sway.sh ~/.config/sway/volume-notify-sway.sh
|
cp $SCRIPT_DIR/home_dotfiles/.config/sway/volume-notify-sway.sh ~/.config/sway/volume-notify-sway.sh
|
||||||
@@ -75,27 +69,6 @@ else
|
|||||||
echo "⚠ volume-notify-sway.sh not found, skipping..."
|
echo "⚠ volume-notify-sway.sh not found, skipping..."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# === SET THUNAR AS DEFAULT FILE MANAGER ===
|
|
||||||
echo ""
|
|
||||||
echo "Setting thunar as default file manager..."
|
|
||||||
xdg-mime default thunar.desktop inode/directory application/x-gnome-saved-search
|
|
||||||
echo "✓ thunar set as default file manager"
|
|
||||||
|
|
||||||
# === SET SWAYIMG AS DEFAULT IMAGE VIEWER ===
|
|
||||||
echo ""
|
|
||||||
echo "Setting swayimg as default image viewer..."
|
|
||||||
xdg-mime default swayimg.desktop image/jpeg image/jpg image/png image/gif image/webp image/bmp image/tiff image/svg+xml
|
|
||||||
echo "✓ swayimg set as default image viewer"
|
|
||||||
|
|
||||||
# === SET WALLPAPER ===
|
|
||||||
echo ""
|
|
||||||
echo "Setting wallpaper..."
|
|
||||||
#WALLPAPER_NAME="chris-czermak-PamFFHL6fVY-unsplash.jpg"
|
|
||||||
WALLPAPER_NAME="lucas-gallone-2dClJIAR404-unsplash.jpg"
|
|
||||||
WALLPAPER_PATH="$SCRIPT_DIR/home_dotfiles/wallpapers/$WALLPAPER_NAME"
|
|
||||||
cp $WALLPAPER_PATH ~/.config/sway/wallpaper.jpg
|
|
||||||
echo "✓ Wallpaper installed to ~/.config/sway/wallpaper.jpg"
|
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "=========================================="
|
echo "=========================================="
|
||||||
echo "✅ Sway configuration installation complete!"
|
echo "✅ Sway configuration installation complete!"
|
||||||
@@ -109,13 +82,12 @@ echo ""
|
|||||||
echo "Config files installed:"
|
echo "Config files installed:"
|
||||||
echo "- ~/.config/mako/config (notification styling)"
|
echo "- ~/.config/mako/config (notification styling)"
|
||||||
echo "- ~/.config/sway/config (main Sway config)"
|
echo "- ~/.config/sway/config (main Sway config)"
|
||||||
echo "- ~/.config/swayimg/swayimgrc (image viewer config)"
|
|
||||||
echo "- ~/.config/sway/i3status-rust.toml (status bar config)"
|
echo "- ~/.config/sway/i3status-rust.toml (status bar config)"
|
||||||
echo "- ~/.config/sway/weather-sway.sh (weather script)"
|
echo "- ~/.config/sway/weather-sway.sh (weather script)"
|
||||||
echo "- thunar set as default file manager"
|
|
||||||
echo "- swayimg set as default image viewer"
|
|
||||||
if [ -f ~/.config/sway/volume-notify-sway.sh ]; then
|
if [ -f ~/.config/sway/volume-notify-sway.sh ]; then
|
||||||
echo "- ~/.config/sway/volume-notify-sway.sh (volume notifications)"
|
echo "- ~/.config/sway/volume-notify-sway.sh (volume notifications)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
cp chris-czermak-PamFFHL6fVY-unsplash.jpg ~/.config/sway/wallpaper.jpg
|
||||||
|
|
||||||
makoctl reload
|
makoctl reload
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
xrandr \
|
|
||||||
--output HDMI-A-0 --primary --pos 0x0 \
|
|
||||||
--output DisplayPort-0 --pos 2560x0
|
|
||||||
Reference in New Issue
Block a user