24 Commits
0.3.2 ... 0.5

Author SHA1 Message Date
udeved
2e645cb751 Makefile: rel 0.5 2017-10-01 21:14:54 +02:00
ShinyRice
f27c2ebcf5 Updated background 2017-09-17 19:54:10 +02:00
ShinyRice
00048369ce Delete artix_i3.png 2017-09-14 17:06:03 +02:00
Shiny Rice
162e2be872 Updated i3 wallpaper to include new logo and design 2017-09-14 17:04:33 +02:00
Shiny Rice
3c9dcb58e8 Updated i3 wallpaper to include new logo and design 2017-09-14 17:01:22 +02:00
ShinyRice
f5cdde39e5 Add files via upload 2017-09-12 20:15:24 +02:00
ShinyRice
6f568326f5 Delete logo_text.svg 2017-09-12 20:15:04 +02:00
ShinyRice
3f7caa2d76 Delete logo_text.png 2017-09-12 20:14:53 +02:00
ShinyRice
19894ec8c5 Delete flower_of_life_8_and_36_arcs.svg 2017-09-12 19:35:57 +02:00
ShinyRice
6cf4143d12 Updated logo 2017-09-12 19:33:15 +02:00
ShinyRice
124c8cc837 Delete logo.png 2017-09-12 19:32:48 +02:00
ShinyRice
358e5f6e1b Updated logo 2017-09-12 19:29:31 +02:00
ShinyRice
87340a8298 Updated logo 2017-09-12 19:28:22 +02:00
artoo
c4e31c360e Merge pull request #5 from krayon/speling
Correct some spelling in i3 config
2017-09-05 20:16:49 +02:00
Krayon
1f4293a16f Correct some spelling in i3 config 2017-08-26 01:12:32 +10:00
udeved
3c5a4789e4 add plasma 2017-08-15 15:59:05 +02:00
Oscar Campos
95d8577a2a fixed i3 configuration preset 2017-08-08 10:05:17 +01:00
Oscar Campos
37133c95e5 added i3 artix wallpaper 2017-08-07 03:32:59 +01:00
Oscar Campos
ca9fbdd542 add i3 skel 2017-08-06 22:11:17 +01:00
Oscar Campos
eb6c602a0b added flower of life vectorized 8 and 36 arcs versions 2017-08-03 17:34:42 +01:00
udeved
923eab650c version 0.4 2017-07-29 23:43:44 +02:00
artoo
b3360db958 Merge pull request #4 from artix-linux/devel
remove basic/extra
2017-07-29 23:42:39 +02:00
udeved
941989f86e cinnamon: rename gschema override 2017-07-29 23:33:18 +02:00
udeved
20ce7fc7fe remove basic/extra 2017-07-29 22:40:54 +02:00
45 changed files with 1529 additions and 4278 deletions

View File

@@ -1,4 +1,4 @@
Version=0.3.2
Version=0.5
PREFIX = /usr/local
SYSCONFDIR = /etc

Binary file not shown.

Before

Width:  |  Height:  |  Size: 286 KiB

After

Width:  |  Height:  |  Size: 342 KiB

287
i3/skel/.i3/config Normal file
View 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 $HOME/.wallpaper/|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

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 106 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 155 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 110 KiB

After

Width:  |  Height:  |  Size: 106 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 164 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,5 @@
[Common]
ShadowStrength=89
[Windeco]
ButtonSize=ButtonSmall

View 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

View 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

View 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

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
DefaultProfile=Profil 1.profile
[Favorite Profiles]
Favorites=shell.profile
[MainWindow]
ToolBarsMovable=Disabled
[TabBar]
TabBarPosition=Top
TabBarVisibility=ShowTabBarWhenNeeded

View File

@@ -0,0 +1,4 @@
[General Options]
ShowMenuBar=true
ShowPath=false
ShowStatusBar=true

View 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

View File

@@ -0,0 +1,5 @@
[Theme]
name=breeze-dark
[Wallpapers]
usersWallpapers=/usr/share/backgrounds/artix.jpg