-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathset_konsole_wallpapers.sh
More file actions
executable file
·42 lines (30 loc) · 1.64 KB
/
set_konsole_wallpapers.sh
File metadata and controls
executable file
·42 lines (30 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
# Helper script to set Konsole wallpapers
# Konsole profiles don't directly support wallpaper setting via config files
# You need to manually set them or use this as a reference
echo "Konsole Profile Wallpaper Setup Instructions"
echo "=============================================="
echo ""
echo "To set wallpapers for each profile:"
echo "1. Open Konsole"
echo "2. Go to Settings > Edit Current Profile"
echo "3. Select the Appearance tab"
echo "4. Click 'Edit...' next to Color scheme"
echo "5. Go to the Background tab"
echo "6. Set the wallpaper image for each profile"
echo ""
echo "Profile to Image Mapping:"
echo "========================="
echo "Forest_MistyMorning -> /home/panda/Pictures/konsole_forests/01_misty_morning.png"
echo "Forest_DarkEvergreen -> /home/panda/Pictures/konsole_forests/02_dark_evergreen.png"
echo "Forest_AutumnGlow -> /home/panda/Pictures/konsole_forests/03_autumn_glow.png"
echo "Forest_BambooZen -> /home/panda/Pictures/konsole_forests/04_bamboo_zen.png"
echo "Forest_SnowyPines -> /home/panda/Pictures/konsole_forests/05_snowy_pines.png"
echo "Forest_TropicalRainforest -> /home/panda/Pictures/konsole_forests/06_tropical_rainforest.png"
echo "Forest_SunsetCanopy -> /home/panda/Pictures/konsole_forests/07_sunset_canopy.png"
echo "Forest_MossyGrove -> /home/panda/Pictures/konsole_forests/08_mossy_grove.png"
echo "Forest_BirchMinimal -> /home/panda/Pictures/konsole_forests/09_birch_minimal.png"
echo "Forest_NightForest -> /home/panda/Pictures/konsole_forests/10_night_forest.png"
echo ""
echo "Or use kreadconfig6/kwriteconfig6 to automate (if available)"
echo "=============================================="