]> src.twobees.de Git - dotfiles.git/commitdiff
add some wallpapers try rose pine theme
authorTobias Sachs <nibbler-ts@ctsachs.de>
Thu, 22 Dec 2022 13:31:43 +0000 (14:31 +0100)
committerTobias Sachs <nibbler-ts@ctsachs.de>
Thu, 22 Dec 2022 13:32:22 +0000 (14:32 +0100)
24 files changed:
stow/bin/.bin/sensible-terminal.sh
stow/i3/.config/i3/config
stow/nvim/.config/nvim/after/plugin/colors.lua [new file with mode: 0644]
stow/nvim/.config/nvim/lua/plugin_mgr.lua
stow/wallpapers/.walls/README.md [new file with mode: 0644]
stow/wallpapers/.walls/pexels-emiliano-arano-3608311.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-fiona-art-3631430.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-ishan-421788.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-jonathan-petersson-1237119.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-joshua-welch-1624600.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-matthias-cooper-1166999.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-moose-photos-1037992.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-nick-collins-1292998.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-pixabay-33545.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-pixabay-355288.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-pixabay-531321.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-simon-berger-1323550.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-stein-egil-liland-1933319.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-todd-trapani-1198817.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-vittorio-staffolani-391726.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-vojta-kovařík-1275415.jpg [new file with mode: 0644]
stow/wallpapers/.walls/pexels-ylanite-koppens-612826.jpg [new file with mode: 0644]
stow/xresources/.Xdefaults [new symlink]
stow/xresources/.Xresources [new file with mode: 0644]

index ec3997b7da1c1f15d76a6e86f9f6dd21dd58a137..dc34a1cc8d11172442ed78c16a4fc74bbfd00d07 100755 (executable)
@@ -2,7 +2,7 @@
 #
 # copied from /usr/bin/i3-sensible-terminal and modified for my needs
 #
-for terminal in  lxterminal xfce4-terminal terminator x-terminal-emulator konsole gnome-terminal urxvt rxvt termit Eterm aterm uxterm xterm roxterm termite terminology st qterminal lilyterm tilix terminix kitty guake tilda alacritty hyper; do
+for terminal in urxvt xfce4-terminal lxterminal terminator x-terminal-emulator konsole gnome-terminal urxvt rxvt termit Eterm aterm uxterm xterm roxterm termite terminology st qterminal lilyterm tilix terminix kitty guake tilda alacritty hyper; do
     if command -v "$terminal" > /dev/null 2>&1; then
         if command -v "$terminal" > /dev/null 2>&1; then
             notify-send -t 300 "$0 exec '$terminal'"
index 2392d0eb8bf0884a621a43c6bf1e14e56a20ce33..11f247623eee27d35d587f9572aa2ab961113273 100644 (file)
@@ -38,12 +38,12 @@ exec --no-startup-id /usr/bin/firefox
 # exec --no-startup-id /usr/bin/x2goclient
 exec --no-startup-id "sleep 10; /usr/bin/nextcloud"
 exec --no-startup-id "sleep 12; /usr/bin/pass git pull"
-exec --no-startup-id nitrogen --restore
+exec --no-startup-id nitrogen --set-auto --random ~/.walls/
 exec --no-startup-id "/usr/bin/setxkbmap -layout us,de"
 exec --no-startup-id "/usr/bin/setxkbmap -option 'grp:alt_shift_toggle'"
 
-default_border pixel 8 
-default_floating_border pixel 1
+default_border pixel 4 
+default_floating_border pixel 2 
 
 
 
diff --git a/stow/nvim/.config/nvim/after/plugin/colors.lua b/stow/nvim/.config/nvim/after/plugin/colors.lua
new file mode 100644 (file)
index 0000000..dbd37d5
--- /dev/null
@@ -0,0 +1,13 @@
+local scheme = 'rose-pine'
+require(scheme).setup({
+    disable_background = true
+})
+
+function SetScheme(s)
+       vim.cmd.colorscheme(s)
+       vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
+       vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
+
+end
+
+SetScheme(scheme)
index 2c0310423555c30d29b5d90e8025485415f6a10a..dceb709aad2cf6615b6aa640a35d6a755cc9c270 100644 (file)
@@ -14,6 +14,13 @@ local packer_bootstrap = ensure_packer()
 return require('packer').startup(function(use)
     use { 'wbthomason/packer.nvim' }
     use { 'catppuccin/nvim', as = 'catppuccin' }
+    use({
+        'rose-pine/neovim',
+        as = 'rose-pine',
+        config = function()
+            vim.cmd('colorscheme rose-pine')
+        end
+    })
     use { 'folke/tokyonight.nvim' }
     use { 'unblevable/quick-scope'}
     use { 'onsails/lspkind.nvim' }
diff --git a/stow/wallpapers/.walls/README.md b/stow/wallpapers/.walls/README.md
new file mode 100644 (file)
index 0000000..5b9fbf5
--- /dev/null
@@ -0,0 +1 @@
+All Wallpapers downloaded from https://www.pexels.com/license/
diff --git a/stow/wallpapers/.walls/pexels-emiliano-arano-3608311.jpg b/stow/wallpapers/.walls/pexels-emiliano-arano-3608311.jpg
new file mode 100644 (file)
index 0000000..de9ec69
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-emiliano-arano-3608311.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-fiona-art-3631430.jpg b/stow/wallpapers/.walls/pexels-fiona-art-3631430.jpg
new file mode 100644 (file)
index 0000000..9b95820
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-fiona-art-3631430.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-ishan-421788.jpg b/stow/wallpapers/.walls/pexels-ishan-421788.jpg
new file mode 100644 (file)
index 0000000..5e83956
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-ishan-421788.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-jonathan-petersson-1237119.jpg b/stow/wallpapers/.walls/pexels-jonathan-petersson-1237119.jpg
new file mode 100644 (file)
index 0000000..aa40c5d
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-jonathan-petersson-1237119.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-joshua-welch-1624600.jpg b/stow/wallpapers/.walls/pexels-joshua-welch-1624600.jpg
new file mode 100644 (file)
index 0000000..157df46
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-joshua-welch-1624600.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-matthias-cooper-1166999.jpg b/stow/wallpapers/.walls/pexels-matthias-cooper-1166999.jpg
new file mode 100644 (file)
index 0000000..1c8654b
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-matthias-cooper-1166999.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-moose-photos-1037992.jpg b/stow/wallpapers/.walls/pexels-moose-photos-1037992.jpg
new file mode 100644 (file)
index 0000000..618eda1
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-moose-photos-1037992.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-nick-collins-1292998.jpg b/stow/wallpapers/.walls/pexels-nick-collins-1292998.jpg
new file mode 100644 (file)
index 0000000..04059fc
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-nick-collins-1292998.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-pixabay-33545.jpg b/stow/wallpapers/.walls/pexels-pixabay-33545.jpg
new file mode 100644 (file)
index 0000000..a1c0296
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-pixabay-33545.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-pixabay-355288.jpg b/stow/wallpapers/.walls/pexels-pixabay-355288.jpg
new file mode 100644 (file)
index 0000000..64fe861
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-pixabay-355288.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-pixabay-531321.jpg b/stow/wallpapers/.walls/pexels-pixabay-531321.jpg
new file mode 100644 (file)
index 0000000..cc0f714
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-pixabay-531321.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-simon-berger-1323550.jpg b/stow/wallpapers/.walls/pexels-simon-berger-1323550.jpg
new file mode 100644 (file)
index 0000000..ded6e54
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-simon-berger-1323550.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-stein-egil-liland-1933319.jpg b/stow/wallpapers/.walls/pexels-stein-egil-liland-1933319.jpg
new file mode 100644 (file)
index 0000000..ca6edb6
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-stein-egil-liland-1933319.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-todd-trapani-1198817.jpg b/stow/wallpapers/.walls/pexels-todd-trapani-1198817.jpg
new file mode 100644 (file)
index 0000000..fc740eb
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-todd-trapani-1198817.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-vittorio-staffolani-391726.jpg b/stow/wallpapers/.walls/pexels-vittorio-staffolani-391726.jpg
new file mode 100644 (file)
index 0000000..da56857
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-vittorio-staffolani-391726.jpg differ
diff --git a/stow/wallpapers/.walls/pexels-vojta-kovařík-1275415.jpg b/stow/wallpapers/.walls/pexels-vojta-kovařík-1275415.jpg
new file mode 100644 (file)
index 0000000..70a7577
Binary files /dev/null and "b/stow/wallpapers/.walls/pexels-vojta-kova\305\231\303\255k-1275415.jpg" differ
diff --git a/stow/wallpapers/.walls/pexels-ylanite-koppens-612826.jpg b/stow/wallpapers/.walls/pexels-ylanite-koppens-612826.jpg
new file mode 100644 (file)
index 0000000..1ad4134
Binary files /dev/null and b/stow/wallpapers/.walls/pexels-ylanite-koppens-612826.jpg differ
diff --git a/stow/xresources/.Xdefaults b/stow/xresources/.Xdefaults
new file mode 120000 (symlink)
index 0000000..70e956f
--- /dev/null
@@ -0,0 +1 @@
+.Xresources
\ No newline at end of file
diff --git a/stow/xresources/.Xresources b/stow/xresources/.Xresources
new file mode 100644 (file)
index 0000000..734fcac
--- /dev/null
@@ -0,0 +1,66 @@
+!-- Xft settings -- !
+Xft.dpi:        96
+Xft.antialias:  true
+Xft.rgba:       rgb
+Xft.hinting:    true
+Xft.hintstyle:  hintfull
+! Xresources file
+!
+urxvt.font: xft:Inconsolata:pixelsize=14
+
+URxvt*inheritPixmap: true
+URxvt*transparent: true
+! URxvt*shading: 0 to 99 darkens, 101 to 200 lightens
+URxvt*shading: 15 
+URxvt*scrollBar: false
+! -- Fonts -- !
+URxvt.intensityStyles: false
+
+URxvt.letterSpace: 0
+URxvt.lineSpace: 0
+URxvt.geometry: 92x24
+URxvt.cursorBlink: true
+URxvt.cursorUnderline: false
+URxvt.saveline: 2048
+URxvt.scrollBar: false
+URxvt.scrollBar_right: false
+URxvt.urgentOnBell: true
+URxvt.depth: 24
+URxvt.iso14755: false
+
+! Special
+URxvt.foreground:   #E5E9F0
+URxvt.background:   #2E3440
+URxvt.cursorColor:  #E5E9F0
+
+! black
+URxvt.color0: #2E3440
+URxvt.color8: #4C566A
+
+! red
+URxvt.color1: #88C0D0
+URxvt.color9: #88C0D0
+
+! green
+URxvt.color2:  #BF616A
+URxvt.color10: #BF616A
+
+! yellow
+URxvt.color3:  #5E81AC
+URxvt.color11: #5E81AC
+
+! blue
+URxvt.color4:  #EBCB8B
+URxvt.color12: #EBCB8B
+
+! magenta
+URxvt.color5:  #A3BE8C
+URxvt.color13: #A3BE8C
+
+! cyan
+URxvt.color6:  #D08770
+URxvt.color14: #D08770
+
+! white
+URxvt.color7:  #E5E9F0
+URxvt.color15: #8FBCBB