Compare commits
27 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
4f422b66b7 | ||
![]() |
b1383d2fe9
|
||
![]() |
657af244fa | ||
![]() |
2e645cb751 | ||
![]() |
f27c2ebcf5 | ||
![]() |
00048369ce | ||
![]() |
162e2be872 | ||
![]() |
3c9dcb58e8 | ||
![]() |
f5cdde39e5 | ||
![]() |
6f568326f5 | ||
![]() |
3f7caa2d76 | ||
![]() |
19894ec8c5 | ||
![]() |
6cf4143d12 | ||
![]() |
124c8cc837 | ||
![]() |
358e5f6e1b | ||
![]() |
87340a8298 | ||
![]() |
c4e31c360e | ||
![]() |
1f4293a16f | ||
![]() |
3c5a4789e4 | ||
![]() |
95d8577a2a | ||
![]() |
37133c95e5 | ||
![]() |
ca9fbdd542 | ||
![]() |
eb6c602a0b | ||
![]() |
923eab650c | ||
![]() |
b3360db958 | ||
![]() |
941989f86e | ||
![]() |
20ce7fc7fe |
2
Makefile
@@ -1,4 +1,4 @@
|
|||||||
Version=0.3.2
|
Version=0.5
|
||||||
|
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
SYSCONFDIR = /etc
|
SYSCONFDIR = /etc
|
||||||
|
BIN
backgrounds/Artix_wallpaper.png
Normal file
After Width: | Height: | Size: 161 KiB |
Before Width: | Height: | Size: 286 KiB After Width: | Height: | Size: 259 KiB |
287
i3/skel/.i3/config
Normal file
@@ -0,0 +1,287 @@
|
|||||||
|
# i3 config file
|
||||||
|
# for a complete reference please refer to http://i3wm.org/docs/userguide.html
|
||||||
|
|
||||||
|
# font settings will be used for window tiles and bars
|
||||||
|
font xft:Noto Sans 10
|
||||||
|
|
||||||
|
# mod key (Mod1=<Alt>, Mod4=<Super>)
|
||||||
|
set $mod Mod4
|
||||||
|
|
||||||
|
# use Mouse+$mod to drag floating windows
|
||||||
|
floating_modifier $mod
|
||||||
|
|
||||||
|
# border style <normal|1pixel|pixel xx|none|pixel>
|
||||||
|
# note that new_float applies only to windows which are starting
|
||||||
|
# out as floating windows but not to windows that are floated later on
|
||||||
|
new_window 1pixel
|
||||||
|
new_float normal
|
||||||
|
|
||||||
|
# hide edge borders <none|vertical|horizontal|both|smart>
|
||||||
|
hide_edge_borders none
|
||||||
|
|
||||||
|
# colors based in alexbooker i3 colors
|
||||||
|
# modifying the value of any variable will affect
|
||||||
|
# all the areas that use the same color
|
||||||
|
set $base00 #101218
|
||||||
|
set $base01 #212121
|
||||||
|
set $base02 #1F242F
|
||||||
|
set $base03 #7780a1
|
||||||
|
set $base04 #C0C5CE
|
||||||
|
set $base05 #d1d4e0
|
||||||
|
set $base06 #C9CCDB
|
||||||
|
set $base07 #ffffff
|
||||||
|
set $base08 #ee829f
|
||||||
|
set $base09 #f99170
|
||||||
|
set $base0A #ffefcc
|
||||||
|
set $base0B #a5ffe1
|
||||||
|
set $base0C #97e0ff
|
||||||
|
set $base0D #97bbf7
|
||||||
|
set $base0E #c0b7f9
|
||||||
|
set $base0F #fcc09e
|
||||||
|
set $base10 #8bc34a
|
||||||
|
set $base11 #150E0E
|
||||||
|
set $base12 #474747
|
||||||
|
|
||||||
|
# focus the last urgent window
|
||||||
|
bindsym $mod+u [urgent=latest] focus
|
||||||
|
|
||||||
|
# switch back and forth from two last used windows using Alt+Tab
|
||||||
|
bindsym Mod1+Tab workspace back_and_forth
|
||||||
|
|
||||||
|
# start a terminal
|
||||||
|
bindsym $mod+Return exec i3-sensible-terminal
|
||||||
|
|
||||||
|
# lock i3 with i3lock-wrapper
|
||||||
|
bindsym $mod+x exec i3lock-wrapper
|
||||||
|
|
||||||
|
# kill focused window
|
||||||
|
bindsym $mod+Shift+q kill
|
||||||
|
|
||||||
|
# start file manager
|
||||||
|
bindsym $mod+n exec ranger
|
||||||
|
# uncomment (and comment line above) if you prefer pcmanfm file manager
|
||||||
|
#bindsym $mod+n exec pcmanfm
|
||||||
|
|
||||||
|
# start dmenu-launcher
|
||||||
|
bindsym $mod+d exec j4-dmenu-desktop
|
||||||
|
# uncomment (and comment line above) if you use KDE/Plama applications
|
||||||
|
#bindsym $mod+d exec QT_QPA_PLATFORMTHEME="kde" j4-dmenu-desktop
|
||||||
|
|
||||||
|
# show an OSD calendar
|
||||||
|
bindsym $mod+F12 exec --no-startup-id "cal | osd_cat -c white -l 8 -i 10 -o 10 -f '-*-*-medium-*-*-*-20-*-*-*-*-*-*-*' -p bottom -A right -s 1"
|
||||||
|
|
||||||
|
# change focus
|
||||||
|
bindsym $mod+h focus left
|
||||||
|
bindsym $mod+j focus right
|
||||||
|
bindsym $mod+k focus up
|
||||||
|
bindsym $mod+l focus down
|
||||||
|
|
||||||
|
# alternatively, you can use the cursor keys:
|
||||||
|
bindsym $mod+Left focus left
|
||||||
|
bindsym $mod+Right focus right
|
||||||
|
bindsym $mod+Up focus up
|
||||||
|
bindsym $mod+Down focus down
|
||||||
|
|
||||||
|
# move focused window
|
||||||
|
bindsym $mod+Shift+h move left
|
||||||
|
bindsym $mod+Shift+j move right
|
||||||
|
bindsym $mod+Shift+k move up
|
||||||
|
bindsym $mod+Shift+l move down
|
||||||
|
|
||||||
|
# alternatively, you can use the cursor 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
|
||||||
|
|
||||||
|
# split in horizontal orientation
|
||||||
|
bindsym $mod+g split h
|
||||||
|
|
||||||
|
# split in vertical orientation
|
||||||
|
bindsym $mod+v split v
|
||||||
|
|
||||||
|
# split toggle
|
||||||
|
bindsym $mod+q split toggle
|
||||||
|
|
||||||
|
# enter fullscreen mode for the focused container
|
||||||
|
bindsym $mod+f fullscreen
|
||||||
|
bindsym $mod+Shift+Return fullscreen
|
||||||
|
|
||||||
|
# change container layout (stacked, tabbed, toggle split)
|
||||||
|
bindsym $mod+s layout stacking
|
||||||
|
bindsym $mod+w layout tabbed
|
||||||
|
bindsym $mod+e layout toggle split
|
||||||
|
|
||||||
|
# move container to right screen
|
||||||
|
bindsym $mod+Mod1+Right move container to output right
|
||||||
|
bindsym $mod+Mod1+Left move container to output left
|
||||||
|
|
||||||
|
# toggle tiling / floating
|
||||||
|
bindsym $mod+Shift+space floating toggle
|
||||||
|
|
||||||
|
# change focus between tiling / floating windows
|
||||||
|
bindsym $mod+space focus mode_toggle
|
||||||
|
|
||||||
|
# focus the parent container
|
||||||
|
bindsym $mod+a focus parent
|
||||||
|
|
||||||
|
# toggle sticky
|
||||||
|
bindsym $mod+Shift+s sticky toggle
|
||||||
|
|
||||||
|
# makes the focused window into a scratchpad window
|
||||||
|
bindsym $mod+Shift+minus move scratchpad
|
||||||
|
|
||||||
|
# hides or shows the focused scratchpad windows, cycle if more than one
|
||||||
|
bindsym $mod+minus scratchpad show
|
||||||
|
|
||||||
|
#navigate workspaces next / previous
|
||||||
|
bindsym $mod+Ctrl+Right workspace next
|
||||||
|
bindsym $mod+Ctrl+Left workspace prev
|
||||||
|
|
||||||
|
# name the workspaces
|
||||||
|
# to display fancy names or symbols you can use a font like awesome and
|
||||||
|
# use something like the following example:
|
||||||
|
# set $workspace1 "1: "
|
||||||
|
# set $workspace2 "2: "
|
||||||
|
set $workspace1 1
|
||||||
|
set $workspace2 2
|
||||||
|
set $workspace3 3
|
||||||
|
set $workspace4 4
|
||||||
|
set $workspace5 5
|
||||||
|
set $workspace6 6
|
||||||
|
set $workspace7 7
|
||||||
|
set $workspace8 8
|
||||||
|
set $workspace9 9
|
||||||
|
set $workspace0 10
|
||||||
|
|
||||||
|
# switch to workspace
|
||||||
|
bindsym $mod+1 workspace $workspace1
|
||||||
|
bindsym $mod+2 workspace $workspace2
|
||||||
|
bindsym $mod+3 workspace $workspace3
|
||||||
|
bindsym $mod+4 workspace $workspace4
|
||||||
|
bindsym $mod+5 workspace $workspace5
|
||||||
|
bindsym $mod+6 workspace $workspace6
|
||||||
|
bindsym $mod+7 workspace $workspace7
|
||||||
|
bindsym $mod+8 workspace $workspace8
|
||||||
|
bindsym $mod+9 workspace $workspace9
|
||||||
|
bindsym $mod+0 workspace $workspace0
|
||||||
|
|
||||||
|
# move focused container to workspace
|
||||||
|
bindsym $mod+Shift+1 move container to workspace $workspace1
|
||||||
|
bindsym $mod+Shift+2 move container to workspace $workspace2
|
||||||
|
bindsym $mod+Shift+3 move container to workspace $workspace3
|
||||||
|
bindsym $mod+Shift+4 move container to workspace $workspace4
|
||||||
|
bindsym $mod+Shift+5 move container to workspace $workspace5
|
||||||
|
bindsym $mod+Shift+6 move container to workspace $workspace6
|
||||||
|
bindsym $mod+Shift+7 move container to workspace $workspace7
|
||||||
|
bindsym $mod+Shift+8 move container to workspace $workspace8
|
||||||
|
bindsym $mod+Shift+9 move container to workspace $workspace9
|
||||||
|
bindsym $mod+Shift+0 move container to workspace $workspace0
|
||||||
|
|
||||||
|
# move workspace to right screen (cycles when in right most)
|
||||||
|
bindsym $mod+Shift+m move workspace to output right
|
||||||
|
|
||||||
|
# reload i3 configuration file (this file)
|
||||||
|
bindsym $mod+Shift+c reload
|
||||||
|
|
||||||
|
# restart i3 inplace
|
||||||
|
bindsym $mod+Shift+r restart
|
||||||
|
|
||||||
|
# exit i3
|
||||||
|
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
|
||||||
|
|
||||||
|
# resize window (you can also use $mod right mouse)
|
||||||
|
mode "" {
|
||||||
|
# bindings to resize
|
||||||
|
bindsym j resize shrink width 10 px or 10 ppt
|
||||||
|
bindsym k resize grow height 10 px or 10 ppt
|
||||||
|
bindsym l resize shrink height 10 px or 10 ppt
|
||||||
|
bindsym semicolon resize grow width 10 px or 10 ppt
|
||||||
|
|
||||||
|
# same bindings, but for the arrow keys
|
||||||
|
bindsym Left resize shrink width 10 px or 10 ppt
|
||||||
|
bindsym Down resize grow height 10 px or 10 ppt
|
||||||
|
bindsym Up resize shrink height 10 px or 10 ppt
|
||||||
|
bindsym Right resize grow width 10 px or 10 ppt
|
||||||
|
|
||||||
|
# back to normal: Enter or Escape
|
||||||
|
bindsym Return mode "default"
|
||||||
|
bindsym Escape mode "default"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Enter the resize mode
|
||||||
|
bindsym $mod+r mode ""
|
||||||
|
|
||||||
|
# bind tools to workspaces (examples)
|
||||||
|
#assign [class="Firefox"] $workspace3
|
||||||
|
#assign [class="Spotify"] $workspace0
|
||||||
|
|
||||||
|
# change some windows behaviour
|
||||||
|
for_window [class="Calamares"] floating enable border normal
|
||||||
|
for_window [class="(?i)virtualbox"] floating enable border normal
|
||||||
|
|
||||||
|
# window colors
|
||||||
|
# border background text indicator
|
||||||
|
client.focused $base01 $base01 $base10 $base0F
|
||||||
|
client.focused_inactive $base11 $base11 $base12 $base0F
|
||||||
|
client.unfocused $base11 $base11 $base12 $base0F
|
||||||
|
client.urgent $base02 $base08 $base00 $base0F
|
||||||
|
|
||||||
|
# start i3bar to display a workspace bar
|
||||||
|
bar {
|
||||||
|
font pango: Noto Sans, FontAwesome 10
|
||||||
|
status_command i3blocks
|
||||||
|
#tray_output primary
|
||||||
|
#tray_padding 0
|
||||||
|
position top
|
||||||
|
colors {
|
||||||
|
separator $base10
|
||||||
|
background $base01
|
||||||
|
statusline $base05
|
||||||
|
#border background text
|
||||||
|
focused_workspace $base01 $base01 $base10
|
||||||
|
active_workspace $base01 $base01 $base03
|
||||||
|
inactive_workspace $base01 $base01 $base03
|
||||||
|
urgent_workspace $base01 $base01 $base08
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# hide or display bar
|
||||||
|
bindsym $mod+p bar mode toggle
|
||||||
|
bindsym $mod+m bar mode invisible
|
||||||
|
|
||||||
|
# volume control
|
||||||
|
# increase sound volume
|
||||||
|
bindsym XF86AudioRaiseVolume exec "amixer -q -D default sset Master 5%+ && pkill -RTMIN+1 i3blocks && osd_cat -S white -p middle -b percentage -P $(/usr/lib/i3blocks/volume) -T 'VOLUME' -d 1 -A center -l 1 -c green -f '-*-*-medium-*-*-*-20-*-*-*-*-*-*-*'"
|
||||||
|
# decrease sound volume
|
||||||
|
bindsym XF86AudioLowerVolume exec "amixer -q -D default sset Master 5%- && pkill -RTMIN+1 i3blocks && osd_cat -S white -p middle -b percentage -P $(/usr/lib/i3blocks/volume) -T 'VOLUME' -d 1 -A center -l 1 -c green -f '-*-*-medium-*-*-*-20-*-*-*-*-*-*-*'"
|
||||||
|
# mute sound
|
||||||
|
bindsym XF86AudioMute exec "amixer -q -D default sset Master toggle && pkill -RTMIN+1 i3blocks && .config/i3/mute | osd_cat -p middle -d 1 -A center -l 1 -c green -f '-*-*-medium-*-*-*-20-*-*-*-*-*-*-*'"
|
||||||
|
|
||||||
|
# screen brightness controls
|
||||||
|
bindsym XF86MonBrightnessUp exec xbacklight -inc 10 # increase screen brightness
|
||||||
|
bindsym XF86MonBrightnessDown exec xbacklight -dec 10 # decrease screen brightness
|
||||||
|
|
||||||
|
# Media player controls
|
||||||
|
bindsym XF86AudioPlay exec playerctl play-pause
|
||||||
|
bindsym XF86AudioPause exec playerctl pause
|
||||||
|
bindsym XF86AudioStop exec playerctl stop
|
||||||
|
bindsym XF86AudioNext exec playerctl next
|
||||||
|
bindsym XF86AudioPrev exec playerctl previous
|
||||||
|
focus_follows_mouse no
|
||||||
|
|
||||||
|
# disable mouse warping
|
||||||
|
#mouse_warping none
|
||||||
|
|
||||||
|
# set random background on desktop
|
||||||
|
exec_always --no-startup-id feh --bg-fill "$(find /usr/share/backgrounds/|shuf -n1)"
|
||||||
|
|
||||||
|
# printscreen
|
||||||
|
bindsym Print exec scrot -q 95 '%Y-%m-%d-%s_$wx$h_scrot.png' -e 'mv $f ~/Pictures/'
|
||||||
|
|
||||||
|
# background apps startup
|
||||||
|
exec compton -f
|
||||||
|
exec --no-startup-id blueberry-tray
|
||||||
|
exec --no-startup-id nm-applet
|
||||||
|
exec --no-startup-id pamac-tray
|
||||||
|
exec --no-startup-id clipit
|
BIN
icons/logo.png
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 106 KiB |
2545
icons/logo.svg
Before Width: | Height: | Size: 155 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 110 KiB After Width: | Height: | Size: 106 KiB |
2654
icons/logo_text.svg
Before Width: | Height: | Size: 164 KiB After Width: | Height: | Size: 14 KiB |
@@ -1,7 +1,7 @@
|
|||||||
[General]
|
[General]
|
||||||
__userfile__=true
|
__userfile__=true
|
||||||
icon_theme=breeze
|
icon_theme=breeze
|
||||||
theme=frost
|
theme=kde-plasma
|
||||||
|
|
||||||
[Mouse]
|
[Mouse]
|
||||||
cursor_theme=Breeze
|
cursor_theme=Breeze
|
@@ -24,7 +24,9 @@ type=kbindicator
|
|||||||
|
|
||||||
[mainmenu]
|
[mainmenu]
|
||||||
alignment=Left
|
alignment=Left
|
||||||
showText=true
|
icon=/usr/share/icons/artix/logo.svg
|
||||||
|
ownIcon=true
|
||||||
|
showText=false
|
||||||
type=mainmenu
|
type=mainmenu
|
||||||
|
|
||||||
[mount]
|
[mount]
|
@@ -49,7 +49,7 @@
|
|||||||
</placement>
|
</placement>
|
||||||
|
|
||||||
<theme>
|
<theme>
|
||||||
<name>Onyx</name>
|
<name>Mikachu</name>
|
||||||
<titleLayout>NLIMC</titleLayout>
|
<titleLayout>NLIMC</titleLayout>
|
||||||
<!--
|
<!--
|
||||||
available characters are NDSLIMC, each can occur at most once.
|
available characters are NDSLIMC, each can occur at most once.
|
@@ -11,8 +11,8 @@ ShadowColor=#000000
|
|||||||
ShowHidden=false
|
ShowHidden=false
|
||||||
ShowWmMenu=false
|
ShowWmMenu=false
|
||||||
SortColumn=name
|
SortColumn=name
|
||||||
SortOrder=descending
|
SortOrder=ascending
|
||||||
Wallpaper=/usr/share/backgrounds/artix.jpg
|
Wallpaper=/usr/share/backgrounds/Artix_wallpaper.png
|
||||||
WallpaperMode=stretch
|
WallpaperMode=stretch
|
||||||
|
|
||||||
[FolderView]
|
[FolderView]
|
||||||
@@ -22,7 +22,7 @@ ShowHidden=false
|
|||||||
SidePaneIconSize=24
|
SidePaneIconSize=24
|
||||||
SmallIconSize=24
|
SmallIconSize=24
|
||||||
SortColumn=name
|
SortColumn=name
|
||||||
SortOrder=descending
|
SortOrder=ascending
|
||||||
ThumbnailIconSize=128
|
ThumbnailIconSize=128
|
||||||
|
|
||||||
[System]
|
[System]
|
@@ -11,8 +11,8 @@ ShadowColor=#000000
|
|||||||
ShowHidden=false
|
ShowHidden=false
|
||||||
ShowWmMenu=false
|
ShowWmMenu=false
|
||||||
SortColumn=name
|
SortColumn=name
|
||||||
SortOrder=descending
|
SortOrder=ascending
|
||||||
Wallpaper=/usr/share/backgrounds/artix.jpg
|
Wallpaper=/usr/share/backgrounds/Artix_wallpaper.png
|
||||||
WallpaperMode=center
|
WallpaperMode=center
|
||||||
|
|
||||||
[FolderView]
|
[FolderView]
|
||||||
@@ -22,7 +22,7 @@ ShowHidden=false
|
|||||||
SidePaneIconSize=24
|
SidePaneIconSize=24
|
||||||
SmallIconSize=24
|
SmallIconSize=24
|
||||||
SortColumn=name
|
SortColumn=name
|
||||||
SortOrder=descending
|
SortOrder=ascending
|
||||||
ThumbnailIconSize=128
|
ThumbnailIconSize=128
|
||||||
|
|
||||||
[System]
|
[System]
|
5
plasma/skel/.config/breezerc
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
[Common]
|
||||||
|
ShadowStrength=89
|
||||||
|
|
||||||
|
[Windeco]
|
||||||
|
ButtonSize=ButtonSmall
|
27
plasma/skel/.config/dolphinrc
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
[CompactMode]
|
||||||
|
FontWeight=50
|
||||||
|
|
||||||
|
[DetailsMode]
|
||||||
|
FontWeight=50
|
||||||
|
IconSize=32
|
||||||
|
|
||||||
|
[General]
|
||||||
|
GlobalViewProps=true
|
||||||
|
ShowFullPath=true
|
||||||
|
Version=200
|
||||||
|
ViewPropsTimestamp=2016,4,8,20,41,26
|
||||||
|
|
||||||
|
[IconsMode]
|
||||||
|
FontWeight=50
|
||||||
|
|
||||||
|
[MainWindow]
|
||||||
|
ToolBarsMovable=Disabled
|
||||||
|
|
||||||
|
[Open-with settings]
|
||||||
|
CompletionMode=5
|
||||||
|
|
||||||
|
[PreviewSettings]
|
||||||
|
Plugins=imagethumbnail,jpegthumbnail,directorythumbnail,svgthumbnail
|
||||||
|
|
||||||
|
[Search]
|
||||||
|
ShowFacetsWidget=true
|
78
plasma/skel/.config/katepartrc
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
[Document]
|
||||||
|
Allow End of Line Detection=true
|
||||||
|
BOM=false
|
||||||
|
Backup Flags=0
|
||||||
|
Backup Prefix=
|
||||||
|
Backup Suffix=~
|
||||||
|
Encoding=UTF-8
|
||||||
|
End of Line=0
|
||||||
|
Indent On Backspace=true
|
||||||
|
Indent On Tab=true
|
||||||
|
Indent On Text Paste=false
|
||||||
|
Indentation Mode=normal
|
||||||
|
Indentation Width=4
|
||||||
|
Keep Extra Spaces=false
|
||||||
|
Line Length Limit=4096
|
||||||
|
Newline at End of File=true
|
||||||
|
On-The-Fly Spellcheck=false
|
||||||
|
Overwrite Mode=false
|
||||||
|
PageUp/PageDown Moves Cursor=false
|
||||||
|
Remove Spaces=2
|
||||||
|
ReplaceTabsDyn=true
|
||||||
|
Show Spaces=false
|
||||||
|
Show Tabs=true
|
||||||
|
Smart Home=true
|
||||||
|
Swap Directory=
|
||||||
|
Swap File Mode=1
|
||||||
|
Swap Sync Interval=15
|
||||||
|
Tab Handling=2
|
||||||
|
Tab Width=4
|
||||||
|
Word Wrap=false
|
||||||
|
Word Wrap Column=80
|
||||||
|
|
||||||
|
[Editor]
|
||||||
|
Encoding Prober Type=1
|
||||||
|
Fallback Encoding=ISO-8859-15
|
||||||
|
|
||||||
|
[Renderer]
|
||||||
|
Animate Bracket Matching=false
|
||||||
|
Schema=Normal
|
||||||
|
Show Indentation Lines=true
|
||||||
|
Show Whole Bracket Expression=true
|
||||||
|
Word Wrap Marker=false
|
||||||
|
|
||||||
|
[View]
|
||||||
|
Allow Mark Menu=true
|
||||||
|
Auto Brackets=false
|
||||||
|
Auto Center Lines=0
|
||||||
|
Auto Completion=true
|
||||||
|
Bookmark Menu Sorting=0
|
||||||
|
Default Mark Type=1
|
||||||
|
Dynamic Word Wrap=true
|
||||||
|
Dynamic Word Wrap Align Indent=80
|
||||||
|
Dynamic Word Wrap Indicators=1
|
||||||
|
Fold First Line=false
|
||||||
|
Folding Bar=true
|
||||||
|
Folding Preview=true
|
||||||
|
Icon Bar=false
|
||||||
|
Input Mode=0
|
||||||
|
Keyword Completion=true
|
||||||
|
Line Modification=true
|
||||||
|
Line Numbers=true
|
||||||
|
Maximum Search History Size=100
|
||||||
|
Persistent Selection=false
|
||||||
|
Scroll Bar Marks=false
|
||||||
|
Scroll Bar Mini Map All=false
|
||||||
|
Scroll Bar Mini Map Width=60
|
||||||
|
Scroll Bar MiniMap=true
|
||||||
|
Scroll Bar Preview=true
|
||||||
|
Scroll Past End=false
|
||||||
|
Search/Replace Flags=1037
|
||||||
|
Show Scrollbars=0
|
||||||
|
Show Word Count=false
|
||||||
|
Smart Copy Cut=false
|
||||||
|
Vi Input Mode Steal Keys=false
|
||||||
|
Vi Relative Line Numbers=false
|
||||||
|
Word Completion=true
|
||||||
|
Word Completion Minimal Word Length=3
|
||||||
|
Word Completion Remove Tail=true
|
34
plasma/skel/.config/katerc
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
DefaultProfile=Profil 1.profile
|
||||||
|
|
||||||
|
[Favorite Profiles]
|
||||||
|
Favorites=
|
||||||
|
|
||||||
|
[General]
|
||||||
|
Config Revision=10
|
||||||
|
Days Meta Infos=30
|
||||||
|
Last Session=
|
||||||
|
Modified Notification=false
|
||||||
|
Recent File List Entry Count=10
|
||||||
|
Restore Window Configuration=true
|
||||||
|
Save Meta Infos=true
|
||||||
|
Show Full Path in Title=false
|
||||||
|
Show Menu Bar=true
|
||||||
|
Show Status Bar=true
|
||||||
|
Show Tab Bar=true
|
||||||
|
Startup Session=manual
|
||||||
|
|
||||||
|
[Konsole]
|
||||||
|
AutoSyncronize=true
|
||||||
|
SetEditor=false
|
||||||
|
|
||||||
|
[MainWindow]
|
||||||
|
ToolBarsMovable=Disabled
|
||||||
|
|
||||||
|
[filetree]
|
||||||
|
editShade=179,218,246
|
||||||
|
listMode=false
|
||||||
|
shadingEnabled=true
|
||||||
|
showFullPathOnRoots=false
|
||||||
|
sortRole=0
|
||||||
|
viewShade=193,208,209
|
12
plasma/skel/.config/konsolerc
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
DefaultProfile=Profil 1.profile
|
||||||
|
|
||||||
|
[Favorite Profiles]
|
||||||
|
Favorites=shell.profile
|
||||||
|
|
||||||
|
[MainWindow]
|
||||||
|
ToolBarsMovable=Disabled
|
||||||
|
|
||||||
|
[TabBar]
|
||||||
|
TabBarPosition=Top
|
||||||
|
TabBarVisibility=ShowTabBarWhenNeeded
|
4
plasma/skel/.config/kwriterc
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[General Options]
|
||||||
|
ShowMenuBar=true
|
||||||
|
ShowPath=false
|
||||||
|
ShowStatusBar=true
|
154
plasma/skel/.config/plasma-org.kde.plasma.desktop-appletsrc
Normal file
@@ -0,0 +1,154 @@
|
|||||||
|
[ActionPlugins][0]
|
||||||
|
MidButton;NoModifier=org.kde.paste
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
wheel:Vertical;NoModifier=org.kde.switchdesktop
|
||||||
|
|
||||||
|
[ActionPlugins][1]
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
|
||||||
|
[ActionPlugins][127]
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
|
||||||
|
[ActionPlugins][129]
|
||||||
|
MidButton;NoModifier=org.kde.paste
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
wheel:Vertical;NoModifier=org.kde.switchdesktop
|
||||||
|
|
||||||
|
[Containments][1]
|
||||||
|
activityId=
|
||||||
|
formfactor=2
|
||||||
|
immutability=1
|
||||||
|
lastScreen=0
|
||||||
|
location=3
|
||||||
|
plugin=org.kde.panel
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][1][Applets][15][Configuration][General]
|
||||||
|
launchers=file:///usr/share/applications/org.kde.dolphin.desktop,file:///usr/share/applications/systemsettings.desktop,file:///usr/share/applications/org.kde.konsole.desktop
|
||||||
|
|
||||||
|
[Containments][1][Applets][2]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.kickoff
|
||||||
|
|
||||||
|
[Containments][1][Applets][2][Configuration][General]
|
||||||
|
favorites=preferred://browser,systemsettings.desktop,org.kde.dolphin.desktop,org.kde.kate.desktop
|
||||||
|
systemApplications=systemsettings.desktop,org.kde.kinfocenter.desktop
|
||||||
|
|
||||||
|
[Containments][1][Applets][2][Configuration][Shortcuts]
|
||||||
|
global=Alt+F1
|
||||||
|
|
||||||
|
[Containments][1][Applets][2][Shortcuts]
|
||||||
|
global=Alt+F1
|
||||||
|
|
||||||
|
[Containments][1][Applets][23]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.icon
|
||||||
|
|
||||||
|
[Containments][1][Applets][23][Configuration]
|
||||||
|
localPath=/home/artux/.local/share/plasma_icons/virtualbox.desktop
|
||||||
|
url=file:///usr/share/applications/virtualbox.desktop
|
||||||
|
|
||||||
|
[Containments][1][Applets][24]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.icontasks
|
||||||
|
|
||||||
|
[Containments][1][Applets][24][Configuration][General]
|
||||||
|
launchers=file:///usr/share/applications/org.kde.konsole.desktop,file:///usr/share/applications/org.kde.dolphin.desktop
|
||||||
|
|
||||||
|
[Containments][1][Applets][3]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.pager
|
||||||
|
|
||||||
|
[Containments][1][Applets][5]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.systemtray
|
||||||
|
|
||||||
|
[Containments][1][Applets][5][Configuration]
|
||||||
|
SystrayContainmentId=16
|
||||||
|
|
||||||
|
[Containments][1][Applets][5][Configuration][Containments][8]
|
||||||
|
formfactor=2
|
||||||
|
location=3
|
||||||
|
|
||||||
|
[Containments][1][Applets][5][Configuration][General]
|
||||||
|
extraItems=org.kde.plasma.notifications,org.kde.plasma.devicenotifier,org.kde.plasma.volume,org.kde.plasma.clipboard,org.kde.plasma.bluetooth,org.kde.plasma.battery,org.kde.plasma.networkmanagement,org.kde.plasma.mediacontroller
|
||||||
|
knownItems=org.kde.plasma.notifications,org.kde.plasma.devicenotifier,org.kde.plasma.volume,org.kde.plasma.clipboard,org.kde.plasma.bluetooth,org.kde.plasma.battery,org.kde.plasma.networkmanagement,org.kde.plasma.mediacontroller
|
||||||
|
|
||||||
|
[Containments][1][Applets][6]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.digitalclock
|
||||||
|
|
||||||
|
[Containments][1][ConfigDialog]
|
||||||
|
DialogHeight=86
|
||||||
|
DialogWidth=1920
|
||||||
|
|
||||||
|
[Containments][1][General]
|
||||||
|
AppletOrder=2;3;23;24;5;6
|
||||||
|
|
||||||
|
[Containments][16]
|
||||||
|
activityId=
|
||||||
|
formfactor=2
|
||||||
|
immutability=1
|
||||||
|
lastScreen=0
|
||||||
|
location=3
|
||||||
|
plugin=org.kde.plasma.private.systemtray
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][16][Applets][17]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.notifications
|
||||||
|
|
||||||
|
[Containments][16][Applets][18]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.devicenotifier
|
||||||
|
|
||||||
|
[Containments][16][Applets][19]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.volume
|
||||||
|
|
||||||
|
[Containments][16][Applets][20]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.clipboard
|
||||||
|
|
||||||
|
[Containments][16][Applets][21]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.battery
|
||||||
|
|
||||||
|
[Containments][16][Applets][22]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.networkmanagement
|
||||||
|
|
||||||
|
[Containments][16][Applets][23]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.mediacontroller
|
||||||
|
|
||||||
|
[Containments][16][ConfigDialog]
|
||||||
|
DialogHeight=600
|
||||||
|
DialogWidth=800
|
||||||
|
|
||||||
|
[Containments][16][General]
|
||||||
|
extraItems=org.kde.plasma.notifications,org.kde.plasma.devicenotifier,org.kde.plasma.volume,org.kde.plasma.clipboard,org.kde.plasma.bluetooth,org.kde.plasma.battery,org.kde.plasma.networkmanagement,org.kde.plasma.mediacontroller
|
||||||
|
knownItems=org.kde.plasma.notifications,org.kde.plasma.devicenotifier,org.kde.plasma.volume,org.kde.plasma.clipboard,org.kde.plasma.bluetooth,org.kde.plasma.battery,org.kde.plasma.networkmanagement,org.kde.plasma.mediacontroller
|
||||||
|
shownItems=octopi-notifier
|
||||||
|
|
||||||
|
[Containments][7]
|
||||||
|
activityId=e5f3bb27-0cbc-4596-90ec-25af7cf8283f
|
||||||
|
formfactor=0
|
||||||
|
immutability=1
|
||||||
|
lastScreen=0
|
||||||
|
location=0
|
||||||
|
plugin=org.kde.desktopcontainment
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][7][ConfigDialog]
|
||||||
|
DialogHeight=600
|
||||||
|
DialogWidth=800
|
||||||
|
|
||||||
|
[Containments][7][General]
|
||||||
|
ToolBoxButtonState=bottomleft
|
||||||
|
ToolBoxButtonY=1041
|
||||||
|
|
||||||
|
[Containments][7][Wallpaper][org.kde.image][General]
|
||||||
|
Image=file:///usr/share/backgrounds/artix.jpg
|
||||||
|
height=1080
|
||||||
|
width=1920
|
5
plasma/skel/.config/plasmarc
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
[Theme]
|
||||||
|
name=breeze-dark
|
||||||
|
|
||||||
|
[Wallpapers]
|
||||||
|
usersWallpapers=/usr/share/backgrounds/artix.jpg
|